diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-04-01 12:01:19 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-04-01 12:01:19 +0000 |
commit | 4c66860c91fa449175a4a81f1244847060fd684c (patch) | |
tree | 9cd47e1186d0858442f61f1765fd17150b6243e7 /sunrpc | |
parent | e784ad6a4d6348585e0773d5ff7f28bd93bce3ea (diff) | |
download | glibc-4c66860c91fa449175a4a81f1244847060fd684c.zip glibc-4c66860c91fa449175a4a81f1244847060fd684c.tar.gz glibc-4c66860c91fa449175a4a81f1244847060fd684c.tar.bz2 |
Update.
1998-04-01 Thorsten Kukuk <kukuk@vt.uni-paderborn.de>
* sunrpc/clnt_udp.c (clntudp_call): Don't check the xid if
we only wait for a replay.
Diffstat (limited to 'sunrpc')
-rw-r--r-- | sunrpc/clnt_udp.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sunrpc/clnt_udp.c b/sunrpc/clnt_udp.c index a0164f0..3ce124f 100644 --- a/sunrpc/clnt_udp.c +++ b/sunrpc/clnt_udp.c @@ -356,8 +356,12 @@ send_again: } if (inlen < 4) continue; - /* see if reply transaction id matches sent id */ - if (*((u_int32_t *) (cu->cu_inbuf)) != *((u_int32_t *) (cu->cu_outbuf))) + + /* see if reply transaction id matches sent id. + Don't do this if we only wait for a replay */ + if (xargs != NULL + && (*((u_int32_t *) (cu->cu_inbuf)) + != *((u_int32_t *) (cu->cu_outbuf)))) continue; /* we now assume we have the proper reply */ break; |