diff options
author | joseph <joseph@7b3dc134-2b1b-0410-93df-9e9f96275f8d> | 2010-06-10 19:17:37 +0000 |
---|---|---|
committer | joseph <joseph@7b3dc134-2b1b-0410-93df-9e9f96275f8d> | 2010-06-10 19:17:37 +0000 |
commit | cfd3e7c77b6bc0fae1f579fec477086e0d358662 (patch) | |
tree | 4748a08cef2f4fd92c8531d9db37fae19ed82a78 /libc/sunrpc | |
parent | d37f23fb2b1487d48bbcf8d6d934f965cb9a621e (diff) | |
download | eglibc2-cfd3e7c77b6bc0fae1f579fec477086e0d358662.tar.gz |
Merge changes between r10503 and r10687 from /fsf/trunk.
git-svn-id: svn://svn.eglibc.org/trunk@10688 7b3dc134-2b1b-0410-93df-9e9f96275f8d
Diffstat (limited to 'libc/sunrpc')
-rw-r--r-- | libc/sunrpc/clnt_tcp.c | 1 | ||||
-rw-r--r-- | libc/sunrpc/clnt_udp.c | 1 | ||||
-rw-r--r-- | libc/sunrpc/clnt_unix.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/libc/sunrpc/clnt_tcp.c b/libc/sunrpc/clnt_tcp.c index 1552be87a..d26a1268a 100644 --- a/libc/sunrpc/clnt_tcp.c +++ b/libc/sunrpc/clnt_tcp.c @@ -399,6 +399,7 @@ clnttcp_control (CLIENT *cl, int request, char *info) /* This will set the xid of the NEXT call */ *(u_long *)ct->ct_mcall = htonl (*(u_long *)info - 1); /* decrement by 1 as clnttcp_call() increments once */ + break; case CLGET_VERS: /* * This RELIES on the information that, in the call body, diff --git a/libc/sunrpc/clnt_udp.c b/libc/sunrpc/clnt_udp.c index 62ee3a1c9..360e26a59 100644 --- a/libc/sunrpc/clnt_udp.c +++ b/libc/sunrpc/clnt_udp.c @@ -582,6 +582,7 @@ clntudp_control (CLIENT *cl, int request, char *info) /* This will set the xid of the NEXT call */ *(u_long *)cu->cu_outbuf = htonl(*(u_long *)info - 1); /* decrement by 1 as clntudp_call() increments once */ + break; case CLGET_VERS: /* * This RELIES on the information that, in the call body, diff --git a/libc/sunrpc/clnt_unix.c b/libc/sunrpc/clnt_unix.c index db3ea312a..bca1273e2 100644 --- a/libc/sunrpc/clnt_unix.c +++ b/libc/sunrpc/clnt_unix.c @@ -376,6 +376,7 @@ clntunix_control (CLIENT *cl, int request, char *info) /* This will set the xid of the NEXT call */ *(u_long *) ct->ct_mcall = htonl (*(u_long *)info - 1); /* decrement by 1 as clntunix_call() increments once */ + break; case CLGET_VERS: /* * This RELIES on the information that, in the call body, |