Update.
authorUlrich Drepper <drepper@redhat.com>
Sat, 10 Jun 2000 21:55:11 +0000 (21:55 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 10 Jun 2000 21:55:11 +0000 (21:55 +0000)
2000-06-10  Ulrich Drepper  <drepper@redhat.com>

* sysdeps/unix/sysv/linux/bits/socket.h (struct cmsghdr): Mark
__cmsg_data field with __extension__.

ChangeLog
sysdeps/unix/sysv/linux/bits/socket.h

index 3f40c9518a97d757ed47b541a8af99f2ab13ab97..5e8d6d37b8148f6fc2b80bd037bc094335bef1c7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-06-10  Ulrich Drepper  <drepper@redhat.com>
+
+       * sysdeps/unix/sysv/linux/bits/socket.h (struct cmsghdr): Mark
+       __cmsg_data field with __extension__.
+
 2000-06-10  David Mosberger  <davidm@hpl.hp.com>
 
        * sysdeps/unix/sysv/linux/ia64/syscall.S: Fix it so it actually works.
index bd3dd9f4f632d794afd77a649999e049b98b7dff..1c8b30b7c81ffd89b956e6cf7540c2a0b93c107e 100644 (file)
@@ -228,7 +228,7 @@ struct cmsghdr
     int cmsg_level;            /* Originating protocol.  */
     int cmsg_type;             /* Protocol specific type.  */
 #if !defined __STRICT_ANSI__ && defined __GNUC__ && __GNUC__ >= 2
-    unsigned char __cmsg_data[0]; /* Ancillary data.  */
+    __extension__ unsigned char __cmsg_data[0]; /* Ancillary data.  */
     /* XXX Perhaps this should be removed.  */
 #endif
   };