From: Dmitry V. Levin Date: Tue, 13 Mar 2012 01:26:26 +0000 (+0000) Subject: net.c: recognize MSG_WAITFORONE X-Git-Tag: v4.7~114 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3df080af316bd7dad363d464114bc20ce36c1f53;p=strace net.c: recognize MSG_WAITFORONE * net.c (msg_flags): Add MSG_WAITFORONE. --- diff --git a/net.c b/net.c index e7c7b2bb..8703b8be 100644 --- a/net.c +++ b/net.c @@ -587,6 +587,9 @@ static const struct xlat msg_flags[] = { #ifdef MSG_MORE { MSG_MORE, "MSG_MORE" }, #endif +#ifdef MSG_WAITFORONE + { MSG_WAITFORONE, "MSG_WAITFORONE" }, +#endif #ifdef MSG_CMSG_CLOEXEC { MSG_CMSG_CLOEXEC, "MSG_CMSG_CLOEXEC" }, #endif