mirror of
https://sourceware.org/git/glibc.git
synced 2025-09-05 14:24:06 +03:00
Update.
2002-04-12 H.J. Lu <hjl@gnu.org> * sunrpc/clnt_raw.c (clntraw_create): Properly set xdrs and client.
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
2002-04-12 H.J. Lu <hjl@gnu.org>
|
||||||
|
|
||||||
|
* sunrpc/clnt_raw.c (clntraw_create): Properly set xdrs and client.
|
||||||
|
|
||||||
2002-04-18 Bruno Haible <bruno@clisp.org>
|
2002-04-18 Bruno Haible <bruno@clisp.org>
|
||||||
|
|
||||||
* iconvdata/euc-jisx0213.c (EMIT_SHIFT_TO_INIT, BODY for
|
* iconvdata/euc-jisx0213.c (EMIT_SHIFT_TO_INIT, BODY for
|
||||||
|
@@ -92,8 +92,8 @@ clntraw_create (u_long prog, u_long vers)
|
|||||||
{
|
{
|
||||||
struct clntraw_private_s *clp = clntraw_private;
|
struct clntraw_private_s *clp = clntraw_private;
|
||||||
struct rpc_msg call_msg;
|
struct rpc_msg call_msg;
|
||||||
XDR *xdrs = &clp->xdr_stream;
|
XDR *xdrs;
|
||||||
CLIENT *client = &clp->client_object;
|
CLIENT *client;
|
||||||
|
|
||||||
if (clp == 0)
|
if (clp == 0)
|
||||||
{
|
{
|
||||||
@@ -102,6 +102,8 @@ clntraw_create (u_long prog, u_long vers)
|
|||||||
return (0);
|
return (0);
|
||||||
clntraw_private = clp;
|
clntraw_private = clp;
|
||||||
}
|
}
|
||||||
|
xdrs = &clp->xdr_stream;
|
||||||
|
client = &clp->client_object;
|
||||||
/*
|
/*
|
||||||
* pre-serialize the static part of the call msg and stash it away
|
* pre-serialize the static part of the call msg and stash it away
|
||||||
*/
|
*/
|
||||||
|
Reference in New Issue
Block a user