]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 1 Apr 1998 12:01:19 +0000 (12:01 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 1 Apr 1998 12:01:19 +0000 (12:01 +0000)
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.

ChangeLog
sunrpc/clnt_udp.c

index 918d1463c34cfc0020bf5f88f5367ea3d7510340..91501478110f56f85d1b79f8574636541c1e4da8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+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.
+
 1998-04-01  Ulrich Drepper  <drepper@cygnus.com>
 
        * iconvdata/Makefile: Finally fix dependencies for JOHAB and
index a0164f01f6c75bb501750b805d52cac1954b285e..3ce124f5d7e0947ee45a8b73da94999a6fc7cd6c 100644 (file)
@@ -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;