From d50bf88d20cd65827e853300ce658e850e7603a3 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 2 Feb 2021 15:12:55 +0100 Subject: [PATCH] rpcclient: Fix a DBG msg: This is not dcerpc_winreg_int_openkey() Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- source3/rpc_client/cli_winreg_int.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/rpc_client/cli_winreg_int.c b/source3/rpc_client/cli_winreg_int.c index 3ac8380bf7c..51cd36367e0 100644 --- a/source3/rpc_client/cli_winreg_int.c +++ b/source3/rpc_client/cli_winreg_int.c @@ -120,8 +120,8 @@ static NTSTATUS _winreg_int_openkey(TALLOC_CTX *mem_ctx, msg_ctx, &binding_handle); if (!NT_STATUS_IS_OK(status)) { - DEBUG(0, ("dcerpc_winreg_int_openkey: Could not connect to winreg pipe: %s\n", - nt_errstr(status))); + DBG_WARNING("Could not connect to winreg pipe: %s\n", + nt_errstr(status)); return status; } -- 2.47.3