summaryrefslogtreecommitdiff
path: root/source3/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
commita2f07662a1637a6ee7802fa2d3d12c1227118e28 (patch)
treef94370c398c6c8a7a3dd4f2e56b39976e1cc6f6c /source3/passdb
parenta26a4c651310b1a5e4a55117bf1a443220b1c184 (diff)
downloadsamba-a2f07662a1637a6ee7802fa2d3d12c1227118e28.tar.gz
samba-a2f07662a1637a6ee7802fa2d3d12c1227118e28.tar.bz2
samba-a2f07662a1637a6ee7802fa2d3d12c1227118e28.zip
Debug fixes from ctrlsoft
(This used to be commit 27e34d4e63adc6d6ad63857d2a17595b7cff52db)
Diffstat (limited to 'source3/passdb')
-rw-r--r--source3/passdb/passdb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/passdb/passdb.c b/source3/passdb/passdb.c
index dd951c02ac..88b624cc19 100644
--- a/source3/passdb/passdb.c
+++ b/source3/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;
}