summaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-08-06 23:01:27 +0000
committerUlrich Drepper <drepper@redhat.com>1999-08-06 23:01:27 +0000
commit19fdfe298de059a0f94a8c50d827897fd3b34fd6 (patch)
tree1e08505c1affbd18a25a7301260fe7ffed3b1e06 /sysdeps
parentcc3cdb18a23998d63ff6eea7f2b84290f3c0da56 (diff)
Fix typo (MSG_TRUNC -> MSG_DONTWAIT).
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/unix/sysv/linux/bits/socket.h2
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 056087b2f7..193067001f 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. */