diff options
author | Michael Adam <obnox@samba.org> | 2008-01-21 15:14:16 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-01-21 22:49:45 +0100 |
commit | 59c0aa3afd3d4d9ec4b248ef89d32fdcdbd7eca2 (patch) | |
tree | 487c28040fc5bd04d5661aadd2ce1e643d5a9550 /source3/services | |
parent | 2dbbb375742e508dddf29f3f003d138e64f8e2d6 (diff) | |
download | samba-59c0aa3afd3d4d9ec4b248ef89d32fdcdbd7eca2.tar.gz |
Fix two debug messages.
Michael
(This used to be commit 35e23368dd4240a3c907b4cee882f51119032527)
Diffstat (limited to 'source3/services')
-rw-r--r-- | source3/services/services_db.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/services/services_db.c b/source3/services/services_db.c index b1daae4df8c..d4e144d5ff8 100644 --- a/source3/services/services_db.c +++ b/source3/services/services_db.c @@ -526,7 +526,7 @@ SEC_DESC *svcctl_get_secdesc( TALLOC_CTX *ctx, const char *name, NT_USER_TOKEN * SAFE_FREE(path); if ( !(values = TALLOC_ZERO_P( key, REGVAL_CTR )) ) { - DEBUG(0,("add_new_svc_name: talloc() failed!\n")); + DEBUG(0,("svcctl_get_secdesc: talloc() failed!\n")); TALLOC_FREE( key ); return NULL; } @@ -582,7 +582,7 @@ bool svcctl_set_secdesc( TALLOC_CTX *ctx, const char *name, SEC_DESC *sec_desc, SAFE_FREE(path); if ( !(values = TALLOC_ZERO_P( key, REGVAL_CTR )) ) { - DEBUG(0,("add_new_svc_name: talloc() failed!\n")); + DEBUG(0,("svcctl_set_secdesc: talloc() failed!\n")); TALLOC_FREE( key ); return False; } |