00db10
commit 3bfff2edbef578746211ba231f3942efffd38f86
00db10
Author: Carlos O'Donell <carlos@redhat.com>
00db10
Date:   Thu Feb 6 11:12:48 2014 -0500
00db10
00db10
    BZ #16529: Fix pedantic warning with netinet/in.h.
00db10
    
00db10
    When compiling with pedantic the following warning is seen:
00db10
    
00db10
    gcc -Wall -pedantic -O0 -o test test.c
00db10
    In file included from test.c:3:0:
00db10
    /path/inet/netinet/in.h:111:21: warning: comma at end of \
00db10
    enumerator list [-Wpedantic]
00db10
         IPPROTO_MH = 135,      /* IPv6 mobility header.  */
00db10
                         ^
00db10
    
00db10
    It is valid C99 to have a trailing comma after the last item in
00db10
    an enumeration. However it is not valid C90. If possible glibc
00db10
    attempts to keep all headers C90 + long long without requiring
00db10
    C99 features. In this case it's easy to fix the headers and it
00db10
    removes the warning seem with -pedantic.
00db10
00db10
diff --git a/inet/netinet/in.h b/inet/netinet/in.h
00db10
index ad9ce6c..d8d8e53 100644
00db10
--- a/inet/netinet/in.h
00db10
+++ b/inet/netinet/in.h
00db10
@@ -108,7 +108,7 @@ enum
00db10
 #define IPPROTO_NONE		IPPROTO_NONE
00db10
     IPPROTO_DSTOPTS = 60,  /* IPv6 destination options.  */
00db10
 #define IPPROTO_DSTOPTS		IPPROTO_DSTOPTS
00db10
-    IPPROTO_MH = 135,      /* IPv6 mobility header.  */
00db10
+    IPPROTO_MH = 135       /* IPv6 mobility header.  */
00db10
 #define IPPROTO_MH		IPPROTO_MH
00db10
   };
00db10
 #endif /* !__USE_KERNEL_IPV6_DEFS */