1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-12 20:58:37 +03:00

srv_winreg: add a debug message to _winreg_CreateKey().

Michael
(This used to be commit 971f6749ed23523f6eafe5136f6d4c920c20aec4)
This commit is contained in:
Michael Adam 2008-03-28 15:39:52 +01:00
parent fb6fb69966
commit cc2f5fd1b5

View File

@ -740,6 +740,9 @@ WERROR _winreg_CreateKey( pipes_struct *p, struct winreg_CreateKey *r)
if ( !parent )
return WERR_BADFID;
DEBUG(10, ("_winreg_CreateKey called with parent key '%s' and "
"subkey name '%s'\n", parent->key->name, r->in.name.name));
result = reg_createkey(NULL, parent, r->in.name.name, r->in.access_mask,
&new_key, r->out.action_taken);
if (!W_ERROR_IS_OK(result)) {