From: Ulrich Drepper Date: Fri, 6 Aug 1999 23:01:27 +0000 (+0000) Subject: Fix typo (MSG_TRUNC -> MSG_DONTWAIT). X-Git-Tag: cvs/glibc_2-1-2~172 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=19fdfe298de059a0f94a8c50d827897fd3b34fd6;p=thirdparty%2Fglibc.git Fix typo (MSG_TRUNC -> MSG_DONTWAIT). --- diff --git a/sysdeps/unix/sysv/linux/bits/socket.h b/sysdeps/unix/sysv/linux/bits/socket.h index 056087b2f78..193067001f9 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. */