diff options
author | Andrew Bartlett <abartlet@samba.org> | 2001-09-16 08:29:03 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2001-09-16 08:29:03 +0000 |
commit | 5b369bce69c2cbe01f938a643d3b9e71bc2075c4 (patch) | |
tree | c3c5b400e21f58d489ad2756fec971a63fa78413 | |
parent | 0ff0a91a6baf7cf6b3ca59a2b4067cc07e3f2f88 (diff) | |
download | samba-5b369bce69c2cbe01f938a643d3b9e71bc2075c4.tar.gz samba-5b369bce69c2cbe01f938a643d3b9e71bc2075c4.tar.xz samba-5b369bce69c2cbe01f938a643d3b9e71bc2075c4.zip |
Fix compile warnings on IRIX's cc.
-rw-r--r-- | source/client/client.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/client/client.c b/source/client/client.c index 72fa4bf87e9..ea231b34032 100644 --- a/source/client/client.c +++ b/source/client/client.c @@ -48,7 +48,7 @@ static int max_protocol = PROTOCOL_NT1; extern pstring user_socket_options; static int process_tok(fstring tok); -static NTSTATUS cmd_help(void); +static void cmd_help(void); /* 30 second timeout on most commands */ #define CLIENT_TIMEOUT (30*1000) @@ -1787,7 +1787,7 @@ static int process_tok(fstring tok) /**************************************************************************** help ****************************************************************************/ -static NTSTATUS cmd_help(void) +static void cmd_help(void) { int i=0,j; fstring buf; @@ -1804,7 +1804,7 @@ static NTSTATUS cmd_help(void) d_printf("\n"); } } - return NT_STATUS_OK; + return; } /**************************************************************************** |