]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Remove trailing (extra) comma in enum.
authorJeremy Reed <jreed@isc.org>
Wed, 4 Jun 2008 22:34:31 +0000 (22:34 +0000)
committerJeremy Reed <jreed@isc.org>
Wed, 4 Jun 2008 22:34:31 +0000 (22:34 +0000)
Fixes "Unexpected" error with AIX cc (and probably other old compilers).
As reported on bind-users and confirmed by original poster.
This is for bugs ticket #18151.

lib/isc/include/isc/socket.h

index 44587d52379bf32694c6ed8487d7770751eb9d7a..ae2022776d03589045543348fb0730990d7ef5ab 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: socket.h,v 1.72 2007/06/18 23:47:44 tbox Exp $ */
+/* $Id: socket.h,v 1.72.128.1 2008/06/04 22:34:31 jreed Exp $ */
 
 #ifndef ISC_SOCKET_H
 #define ISC_SOCKET_H 1
@@ -146,7 +146,7 @@ typedef enum {
        isc_sockettype_udp = 1,
        isc_sockettype_tcp = 2,
        isc_sockettype_unix = 3,
-       isc_sockettype_fdwatch = 4,
+       isc_sockettype_fdwatch = 4
 } isc_sockettype_t;
 
 /*@{*/