mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
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.
This commit is contained in:
parent
e784ad6a4d
commit
4c66860c91
@ -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>
|
1998-04-01 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
* iconvdata/Makefile: Finally fix dependencies for JOHAB and
|
* iconvdata/Makefile: Finally fix dependencies for JOHAB and
|
||||||
|
@ -356,8 +356,12 @@ send_again:
|
|||||||
}
|
}
|
||||||
if (inlen < 4)
|
if (inlen < 4)
|
||||||
continue;
|
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;
|
continue;
|
||||||
/* we now assume we have the proper reply */
|
/* we now assume we have the proper reply */
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user