diff options
author | Günther Deschner <gd@samba.org> | 2010-03-11 19:25:57 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-03-11 20:23:47 +0100 |
commit | 96a38e387e9655b14504c0c3d181db95cc84cc3d (patch) | |
tree | 9e5173d3ca9280576cad3bed00afe15207a268ba | |
parent | 9e80fe66758829ca1721cd2b8eddd90cb90d6418 (diff) | |
download | samba-96a38e387e9655b14504c0c3d181db95cc84cc3d.tar.gz samba-96a38e387e9655b14504c0c3d181db95cc84cc3d.tar.bz2 samba-96a38e387e9655b14504c0c3d181db95cc84cc3d.zip |
s3-winreg: fix some function names in debug statements.
Guenther
-rw-r--r-- | source3/rpc_server/srv_winreg_nt.c | 6 |
1 files 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, |