]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
2000-01-05 Roland McGrath <roland@baalperazim.frob.com>
authorRoland McGrath <roland@gnu.org>
Thu, 6 Jan 2000 04:19:17 +0000 (04:19 +0000)
committerRoland McGrath <roland@gnu.org>
Thu, 6 Jan 2000 04:19:17 +0000 (04:19 +0000)
* sysdeps/generic/bits/socket.h (enum __socket_type): Remove
trailing comma.
(anonymous enum for MSG_*): Likewise.
(anonymous enum for SO_*): Likewise.

sysdeps/generic/bits/socket.h

index 5eb29492b4ae68bca72009dbdebf7ef46d6f5b79..447372c406336a1423ecaabdbf0b212d357db421 100644 (file)
@@ -1,5 +1,5 @@
 /* System-specific socket constants and types.  Generic/4.3 BSD version.
-   Copyright (C) 1991,92,94,95,96,97,98,99 Free Software Foundation, Inc.
+   Copyright (C) 1991,92,94,95,96,97,98,99,2000 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -47,7 +47,7 @@ enum __socket_type
 #define SOCK_RAW SOCK_RAW
   SOCK_RDM = 4,                        /* Reliably-delivered messages.  */
 #define SOCK_RDM SOCK_RDM
-  SOCK_SEQPACKET = 5,          /* Sequenced, reliable, connection-based,
+  SOCK_SEQPACKET = 5           /* Sequenced, reliable, connection-based,
                                   datagrams of fixed maximum length.  */
 #define SOCK_SEQPACKET SOCK_SEQPACKET
 };
@@ -165,7 +165,7 @@ enum
 #define MSG_CTRUNC MSG_CTRUNC
     MSG_WAITALL                = 0x40, /* Wait for full request or error.  */
 #define MSG_WAITALL MSG_WAITALL
-    MSG_DONTWAIT       = 0x80, /* This message should be nonblocking.  */
+    MSG_DONTWAIT       = 0x80  /* This message should be nonblocking.  */
 #define MSG_DONTWAIT MSG_DONTWAIT
   };
 
@@ -234,7 +234,7 @@ enum
 #define SO_ERROR SO_ERROR
     SO_STYLE = 0x1008,         /* Get socket connection style.  */
 #define SO_STYLE SO_STYLE
-    SO_TYPE = SO_STYLE,                /* Compatible name for SO_STYLE.  */
+    SO_TYPE = SO_STYLE         /* Compatible name for SO_STYLE.  */
 #define SO_TYPE SO_TYPE
   };