From 8a1439b10de61d78a73ddd085da1edf87bb9e40e Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Wed, 20 Sep 2006 17:59:50 +0000 Subject: r18727: set the winreg_AbortSystemShutdown() server * to NULL rather than a dummy placeholder (This used to be commit 92903ab926f0822fb76df58cc65fcd5d44a94f2b) --- source3/utils/net_rpc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source3/utils') diff --git a/source3/utils/net_rpc.c b/source3/utils/net_rpc.c index 7b5c00ee3c..cb426959c3 100644 --- a/source3/utils/net_rpc.c +++ b/source3/utils/net_rpc.c @@ -5109,9 +5109,8 @@ static NTSTATUS rpc_reg_shutdown_abort_internals(const DOM_SID *domain_sid, const char **argv) { NTSTATUS result = NT_STATUS_UNSUCCESSFUL; - uint16_t server = 1; - result = rpccli_winreg_AbortSystemShutdown(pipe_hnd, mem_ctx, &server); + result = rpccli_winreg_AbortSystemShutdown(pipe_hnd, mem_ctx, NULL); if (NT_STATUS_IS_OK(result)) { d_printf("\nShutdown successfully aborted\n"); -- cgit