From 96a38e387e9655b14504c0c3d181db95cc84cc3d Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Thu, 11 Mar 2010 19:25:57 +0100 Subject: s3-winreg: fix some function names in debug statements. Guenther --- source3/rpc_server/srv_winreg_nt.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source3/rpc_server/srv_winreg_nt.c b/source3/rpc_server/srv_winreg_nt.c index 5912322d93..692c83cb69 100644 --- a/source3/rpc_server/srv_winreg_nt.c +++ b/source3/rpc_server/srv_winreg_nt.c @@ -392,7 +392,7 @@ WERROR _winreg_EnumKey(pipes_struct *p, struct winreg_EnumKey *r) if ( !r->in.name || !r->in.keyclass ) return WERR_INVALID_PARAM; - DEBUG(8,("_reg_enum_key: enumerating key [%s]\n", key->key->name)); + DEBUG(8,("_winreg_EnumKey: enumerating key [%s]\n", key->key->name)); err = reg_enumkey(p->mem_ctx, key, r->in.enum_index, (char **)&r->out.name->name, r->out.last_changed_time); @@ -611,7 +611,7 @@ WERROR _winreg_AbortSystemShutdown(pipes_struct *p, struct winreg_AbortSystemShu /********** END SeRemoteShutdownPrivilege BLOCK **********/ - DEBUG(3,("_reg_abort_shutdown: Running the command `%s' gave %d\n", + DEBUG(3,("_winreg_AbortSystemShutdown: Running the command `%s' gave %d\n", abort_shutdown_script, ret)); return (ret == 0) ? WERR_OK : WERR_ACCESS_DENIED; @@ -784,7 +784,7 @@ WERROR _winreg_SetValue(pipes_struct *p, struct winreg_SetValue *r) if ( !key ) return WERR_BADFID; - DEBUG(8,("_reg_set_value: Setting value for [%s:%s]\n", + DEBUG(8,("_winreg_SetValue: Setting value for [%s:%s]\n", key->key->name, r->in.name.name)); status = registry_pull_value(p->mem_ctx, &val, r->in.type, r->in.data, -- cgit