summaryrefslogtreecommitdiffstats
path: root/source/passdb
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-06-14 04:26:23 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-06-14 04:26:23 +0000
commit27e34d4e63adc6d6ad63857d2a17595b7cff52db (patch)
tree70b65722b4d5431bbb1e3ad55ca6b1855df7e598 /source/passdb
parente2f9dd8b65063a276569d9c33aaf06606003b85c (diff)
downloadsamba-27e34d4e63adc6d6ad63857d2a17595b7cff52db.tar.gz
samba-27e34d4e63adc6d6ad63857d2a17595b7cff52db.tar.xz
samba-27e34d4e63adc6d6ad63857d2a17595b7cff52db.zip
Debug fixes from ctrlsoft
Diffstat (limited to 'source/passdb')
-rw-r--r--source/passdb/passdb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/passdb/passdb.c b/source/passdb/passdb.c
index dd951c02ac6..88b624cc19f 100644
--- a/source/passdb/passdb.c
+++ b/source/passdb/passdb.c
@@ -93,7 +93,7 @@ static void destroy_pdb_talloc(SAM_ACCOUNT **user)
NTSTATUS pdb_init_sam_talloc(TALLOC_CTX *mem_ctx, SAM_ACCOUNT **user)
{
if (*user != NULL) {
- DEBUG(0,("pdb_init_sam: SAM_ACCOUNT was non NULL\n"));
+ DEBUG(0,("pdb_init_sam_talloc: SAM_ACCOUNT was non NULL\n"));
#if 0
smb_panic("non-NULL pointer passed to pdb_init_sam\n");
#endif
@@ -108,7 +108,7 @@ NTSTATUS pdb_init_sam_talloc(TALLOC_CTX *mem_ctx, SAM_ACCOUNT **user)
*user=(SAM_ACCOUNT *)talloc(mem_ctx, sizeof(SAM_ACCOUNT));
if (*user==NULL) {
- DEBUG(0,("pdb_init_sam: error while allocating memory\n"));
+ DEBUG(0,("pdb_init_sam_talloc: error while allocating memory\n"));
return NT_STATUS_NO_MEMORY;
}