diff options
author | Ulrich Drepper <drepper@redhat.com> | 2008-12-09 23:25:02 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2008-12-09 23:25:02 +0000 |
commit | 135460f45c16c6611ec9075f5ea003d58380cdeb (patch) | |
tree | b5fa0ec2adeb9c3091dbcf992dcfefceb6e4dd7c /sysdeps | |
parent | 71053765e020168b852f69a3d6e5274b35d57450 (diff) | |
download | glibc-135460f45c16c6611ec9075f5ea003d58380cdeb.tar.gz glibc-135460f45c16c6611ec9075f5ea003d58380cdeb.tar.xz glibc-135460f45c16c6611ec9075f5ea003d58380cdeb.zip |
[BZ #6545]
* sysdeps/unix/sysv/linux/bits/socket.h (SCM_CREDENTIALS): Make available only for __USE_GNU.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/bits/socket.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/bits/socket.h b/sysdeps/unix/sysv/linux/bits/socket.h index 87c3b91802..72c7335ae5 100644 --- a/sysdeps/unix/sysv/linux/bits/socket.h +++ b/sysdeps/unix/sysv/linux/bits/socket.h @@ -309,7 +309,7 @@ enum { SCM_RIGHTS = 0x01 /* Transfer file descriptors. */ #define SCM_RIGHTS SCM_RIGHTS -#ifdef __USE_BSD +#ifdef __USE_GNU , SCM_CREDENTIALS = 0x02 /* Credentials passing. */ # define SCM_CREDENTIALS SCM_CREDENTIALS #endif |