summaryrefslogtreecommitdiff
path: root/source3/services
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-01-21 15:14:16 +0100
committerMichael Adam <obnox@samba.org>2008-01-21 22:49:45 +0100
commit59c0aa3afd3d4d9ec4b248ef89d32fdcdbd7eca2 (patch)
tree487c28040fc5bd04d5661aadd2ce1e643d5a9550 /source3/services
parent2dbbb375742e508dddf29f3f003d138e64f8e2d6 (diff)
downloadsamba-59c0aa3afd3d4d9ec4b248ef89d32fdcdbd7eca2.tar.gz
samba-59c0aa3afd3d4d9ec4b248ef89d32fdcdbd7eca2.tar.bz2
samba-59c0aa3afd3d4d9ec4b248ef89d32fdcdbd7eca2.zip
Fix two debug messages.
Michael (This used to be commit 35e23368dd4240a3c907b4cee882f51119032527)
Diffstat (limited to 'source3/services')
-rw-r--r--source3/services/services_db.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/services/services_db.c b/source3/services/services_db.c
index b1daae4df8..d4e144d5ff 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;
}