diff options
author | Tim Potter <tpot@samba.org> | 2003-02-25 23:28:28 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-02-25 23:28:28 +0000 |
commit | f4492de2d668082df6ae06933d12a3cfe120d403 (patch) | |
tree | 53377b5f90b4e015e69d9ace9c3621402ccf85b6 | |
parent | 33c7b7522504fb15989f32add8e9a087c8d9d0fa (diff) | |
download | samba-f4492de2d668082df6ae06933d12a3cfe120d403.tar.gz samba-f4492de2d668082df6ae06933d12a3cfe120d403.tar.xz samba-f4492de2d668082df6ae06933d12a3cfe120d403.zip |
Fix breakage done by myself yesterday.
-rw-r--r-- | source/client/client.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/source/client/client.c b/source/client/client.c index b95d4d877ca..5da12fd984f 100644 --- a/source/client/client.c +++ b/source/client/client.c @@ -51,8 +51,7 @@ static int max_protocol = PROTOCOL_NT1; extern pstring user_socket_options; static int process_tok(fstring tok); -static NTSTATUS cmd_help(struct cli_state *cli, TALLOC_CTX *mem_ctx, int argc, - const char **argv); +static int cmd_help(void); /* 30 second timeout on most commands */ #define CLIENT_TIMEOUT (30*1000) @@ -980,8 +979,7 @@ static BOOL do_altname(char *name) /**************************************************************************** Exit client. ****************************************************************************/ -static NTSTATUS cmd_quit(struct cli_state *cli, TALLOC_CTX *mem_ctx, int argc, - const char **argv) +static int cmd_quit(void) { cli_shutdown(cli); exit(0); @@ -2151,8 +2149,7 @@ static int process_tok(fstring tok) /**************************************************************************** help ****************************************************************************/ -static NTSTATUS cmd_help(struct cli_state *cli, TALLOC_CTX *mem_ctx, int argc, - const char **argv) +static int cmd_help(void) { int i=0,j; fstring buf; |