diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-08-06 23:01:00 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-08-06 23:01:00 +0000 |
commit | 7aa6d2082273c05f52f18135f7ab66186f76dc44 (patch) | |
tree | be89fd4a23fee9acd9601b4f5f924b62b42a0896 /sysdeps | |
parent | f341c297f662242a605858439a415daefd5fc76a (diff) | |
download | glibc-7aa6d2082273c05f52f18135f7ab66186f76dc44.zip glibc-7aa6d2082273c05f52f18135f7ab66186f76dc44.tar.gz glibc-7aa6d2082273c05f52f18135f7ab66186f76dc44.tar.bz2 |
Update.
1999-08-06 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/unix/sysv/linux/bits/socket.h: Fix typo (MSG_TRUNC ->
MSG_DONTWAIT).
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 056087b..1930670 100644 --- a/sysdeps/unix/sysv/linux/bits/socket.h +++ b/sysdeps/unix/sysv/linux/bits/socket.h @@ -179,7 +179,7 @@ enum MSG_TRUNC = 0x20, #define MSG_TRUNC MSG_TRUNC MSG_DONTWAIT = 0x40, /* Nonblocking IO. */ -#define MSG_DONTWAIT MSG_TRUNC +#define MSG_DONTWAIT MSG_DONTWAIT MSG_EOR = 0x80, /* End of record. */ #define MSG_EOR MSG_EOR MSG_WAITALL = 0x100, /* Wait for a full request. */ |