diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-01-04 07:50:04 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-01-04 07:50:04 +0000 |
commit | a4f7777ca08c732ace2ba60bc0ecffbea1239fc3 (patch) | |
tree | b87ac9abdb6ea057a72d7c9b92acbea7c7350a0b /source/rpc_client/cli_reg.c | |
parent | 42e1af2008a86005beb4e93a8b208ca6685c3edd (diff) | |
download | samba-a4f7777ca08c732ace2ba60bc0ecffbea1239fc3.tar.gz |
Merge from HEAD - idra's fix for the fact that the shutdown command takes two 1
byte boolean flags, not a 16 bit bitmask.
Andrew Bartlett
Diffstat (limited to 'source/rpc_client/cli_reg.c')
-rw-r--r-- | source/rpc_client/cli_reg.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source/rpc_client/cli_reg.c b/source/rpc_client/cli_reg.c index aaf18882f76..1e832954145 100644 --- a/source/rpc_client/cli_reg.c +++ b/source/rpc_client/cli_reg.c @@ -28,7 +28,8 @@ /* Shutdown a server */ NTSTATUS cli_reg_shutdown(struct cli_state * cli, TALLOC_CTX *mem_ctx, - const char *msg, uint32 timeout, uint16 flags) + const char *msg, uint32 timeout, BOOL reboot, + BOOL force) { prs_struct qbuf; prs_struct rbuf; @@ -46,7 +47,7 @@ NTSTATUS cli_reg_shutdown(struct cli_state * cli, TALLOC_CTX *mem_ctx, /* Marshall data and send request */ - init_reg_q_shutdown(&q_s, msg, timeout, flags); + init_reg_q_shutdown(&q_s, msg, timeout, reboot, force); if (!reg_io_q_shutdown("", &q_s, &qbuf, 0) || !rpc_api_pipe_req(cli, REG_SHUTDOWN, &qbuf, &rbuf)) |