summaryrefslogtreecommitdiff
path: root/sunrpc/clnt_raw.c
diff options
context:
space:
mode:
Diffstat (limited to 'sunrpc/clnt_raw.c')
-rw-r--r--sunrpc/clnt_raw.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sunrpc/clnt_raw.c b/sunrpc/clnt_raw.c
index 5b1fb4b74a..110141fcc8 100644
--- a/sunrpc/clnt_raw.c
+++ b/sunrpc/clnt_raw.c
@@ -92,8 +92,8 @@ clntraw_create (u_long prog, u_long vers)
{
struct clntraw_private_s *clp = clntraw_private;
struct rpc_msg call_msg;
- XDR *xdrs = &clp->xdr_stream;
- CLIENT *client = &clp->client_object;
+ XDR *xdrs;
+ CLIENT *client;
if (clp == 0)
{
@@ -102,6 +102,8 @@ clntraw_create (u_long prog, u_long vers)
return (0);
clntraw_private = clp;
}
+ xdrs = &clp->xdr_stream;
+ client = &clp->client_object;
/*
* pre-serialize the static part of the call msg and stash it away
*/