From 477350638399b8ff264100c7832c14df719055f3 Mon Sep 17 00:00:00 2001 From: Luke Leighton Date: Wed, 21 Oct 1998 16:28:44 +0000 Subject: signed / unsigned issues (This used to be commit bd2fc6bb85739cb8e7ed2254e2a553486daed054) --- source3/rpc_client/cli_pipe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/rpc_client') diff --git a/source3/rpc_client/cli_pipe.c b/source3/rpc_client/cli_pipe.c index 12e2cc243c..002c86cafc 100644 --- a/source3/rpc_client/cli_pipe.c +++ b/source3/rpc_client/cli_pipe.c @@ -104,7 +104,7 @@ static BOOL rpc_read(struct cli_state *cli, DEBUG(5,("rpc_read: offset end: 0x%x. data left to read:0x%x\n", rdata->data->offset.end, data_to_read)); - return data_to_read >= 0; + return rdata->data.data != NULL; } /**************************************************************************** -- cgit