diff options
Diffstat (limited to 'source3/rpcclient/cmd_svcctl.c')
-rw-r--r-- | source3/rpcclient/cmd_svcctl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/rpcclient/cmd_svcctl.c b/source3/rpcclient/cmd_svcctl.c index 07bebe2bda..f20d8e30d6 100644 --- a/source3/rpcclient/cmd_svcctl.c +++ b/source3/rpcclient/cmd_svcctl.c @@ -75,7 +75,7 @@ BOOL svc_query_service(struct cli_state *cli, uint16 fnum, /**************************************************************************** nt service info ****************************************************************************/ -void cmd_svc_info(struct client_info *info) +void cmd_svc_info(struct client_info *info, int argc, char *argv[]) { uint16 fnum; BOOL res = True; @@ -216,7 +216,7 @@ BOOL msrpc_svc_enum(struct client_info *info, /**************************************************************************** nt service enum ****************************************************************************/ -void cmd_svc_enum(struct client_info *info) +void cmd_svc_enum(struct client_info *info, int argc, char *argv[]) { ENUM_SRVC_STATUS *svcs = NULL; uint32 num_svcs = 0; @@ -244,7 +244,7 @@ void cmd_svc_enum(struct client_info *info) /**************************************************************************** nt stop service ****************************************************************************/ -void cmd_svc_stop(struct client_info *info) +void cmd_svc_stop(struct client_info *info, int argc, char *argv[]) { uint16 fnum; BOOL res = True; @@ -303,7 +303,7 @@ void cmd_svc_stop(struct client_info *info) /**************************************************************************** nt start service ****************************************************************************/ -void cmd_svc_start(struct client_info *info) +void cmd_svc_start(struct client_info *info, int argc, char *argv[]) { uint16 fnum; BOOL res = True; |