/mandos/release

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/release

« back to all changes in this revision

Viewing changes to plugins.d/mandos-client.c

  • Committer: Teddy Hogeborn
  • Date: 2014-01-21 20:43:52 UTC
  • mfrom: (237.7.200 trunk)
  • Revision ID: teddy@recompile.se-20140121204352-s0sd0d4mp86ivvog
MergeĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
736
736
  }
737
737
  if(af == AF_INET6){
738
738
    to.in6.sin6_port = htons(port);    
 
739
#ifdef __GNUC__
 
740
#pragma GCC diagnostic push
 
741
#pragma GCC diagnostic ignored "-Wstrict-aliasing"
 
742
#endif
739
743
    if(IN6_IS_ADDR_LINKLOCAL /* Spurious warnings from */
740
 
       (&to.in6.sin6_addr)){ /* -Wstrict-aliasing=2 or lower and
741
 
                                -Wunreachable-code*/
 
744
       (&to.in6.sin6_addr)){ /* -Wstrict-aliasing=2 or lower */
 
745
#ifdef __GNUC__
 
746
#pragma GCC diagnostic pop
 
747
#endif
742
748
      if(if_index == AVAHI_IF_UNSPEC){
743
749
        fprintf_plus(stderr, "An IPv6 link-local address is"
744
750
                     " incomplete without a network interface\n");
749
755
      to.in6.sin6_scope_id = (uint32_t)if_index;
750
756
    }
751
757
  } else {
752
 
    to.in.sin_port = htons(port); /* Spurious warnings from
753
 
                                     -Wconversion and
754
 
                                     -Wunreachable-code */
 
758
    to.in.sin_port = htons(port);
755
759
  }
756
760
  
757
761
  if(quit_now){