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 | b0c3915d5e9d8b5790051ff5b3ff38d1074e423f (patch) | |
tree | 179d5a5d0fe0eeb2144f6ac0b28b721c925a099c /source3 | |
parent | f7f020021051ae143d52925aad4c8729ba4da411 (diff) | |
download | samba-b0c3915d5e9d8b5790051ff5b3ff38d1074e423f.tar.gz samba-b0c3915d5e9d8b5790051ff5b3ff38d1074e423f.tar.bz2 samba-b0c3915d5e9d8b5790051ff5b3ff38d1074e423f.zip |
Fix compile warnings on IRIX's cc.
(This used to be commit 5b369bce69c2cbe01f938a643d3b9e71bc2075c4)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/client/client.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 72fa4bf87e..ea231b3403 100644 --- a/source3/client/client.c +++ b/source3/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; } /**************************************************************************** |