diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-11-20 07:16:31 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-11-20 07:16:31 +0000 |
commit | b639d0c9395381757a65b0ab9920e866cdec9120 (patch) | |
tree | dbbe2e4db176d0448b1db845f3da5c020850fb66 /sysdeps/unix/sysv | |
parent | 6cce65407e2fc5015c69bb38741d6942b3e412c3 (diff) | |
download | glibc-b639d0c9395381757a65b0ab9920e866cdec9120.tar.gz glibc-b639d0c9395381757a65b0ab9920e866cdec9120.tar.xz glibc-b639d0c9395381757a65b0ab9920e866cdec9120.zip |
Update.
2004-11-20 Jakub Jelinek <jakub@redhat.com> * sysdeps/unix/sysv/linux/bits/socket.h (SCM_RIGHTS): Avoid comma at the end of enum if __USE_BSD is not defined. (calc_inveclosure, calc_eclosure): Skip OP_DELETED_SUBEXP nodes.
Diffstat (limited to 'sysdeps/unix/sysv')
-rw-r--r-- | sysdeps/unix/sysv/linux/bits/socket.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/bits/socket.h b/sysdeps/unix/sysv/linux/bits/socket.h index 5335caff28..77e9b83c92 100644 --- a/sysdeps/unix/sysv/linux/bits/socket.h +++ b/sysdeps/unix/sysv/linux/bits/socket.h @@ -283,10 +283,10 @@ __NTH (__cmsg_nxthdr (struct msghdr *__mhdr, struct cmsghdr *__cmsg)) <linux/socket.h>. */ enum { - SCM_RIGHTS = 0x01, /* Transfer file descriptors. */ + SCM_RIGHTS = 0x01 /* Transfer file descriptors. */ #define SCM_RIGHTS SCM_RIGHTS #ifdef __USE_BSD - SCM_CREDENTIALS = 0x02 /* Credentials passing. */ + , SCM_CREDENTIALS = 0x02 /* Credentials passing. */ # define SCM_CREDENTIALS SCM_CREDENTIALS #endif }; |