From 06e720a66c9f05cd99ef5a7cb8b2018b5cde5ff0 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 27 Feb 2006 21:24:12 +0000 Subject: r13728: No, we have not talked about this on irc less than 24h ago... ;-) (This used to be commit 59f95ea752d932b00d4a4ff37311b830d65c8a03) --- source3/passdb/pdb_tdb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3') diff --git a/source3/passdb/pdb_tdb.c b/source3/passdb/pdb_tdb.c index e33cd46d54..b0f8a11788 100644 --- a/source3/passdb/pdb_tdb.c +++ b/source3/passdb/pdb_tdb.c @@ -1161,7 +1161,7 @@ static NTSTATUS tdbsam_delete_sam_account(struct pdb_methods *my_methods, struct at module initialization time */ if ( !tdbsam ) { - DEBUG(0,("tdbsam_getsampwrid: tdbsam not open!\n")); + DEBUG(0,("tdbsam_delete_sam_account: tdbsam not open!\n")); return NT_STATUS_NO_SUCH_USER; } @@ -1179,7 +1179,7 @@ static NTSTATUS tdbsam_delete_sam_account(struct pdb_methods *my_methods, struct /* open the database */ if ( !tdbsam_open( tdbsam_filename ) ) { - DEBUG(0,("tdbsam_getsampwnam: failed to open %s!\n", tdbsam_filename)); + DEBUG(0,("tdbsam_delete_sam_account: failed to open %s!\n", tdbsam_filename)); return NT_STATUS_ACCESS_DENIED; } -- cgit