From 3b7448de1468dd86d101972bce40e4931fa2d1c3 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Sat, 14 Nov 2009 00:34:14 +0100 Subject: s3:pdb_default_uid_to_sid: fix some debug statements. Michael --- source3/passdb/pdb_interface.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/passdb') diff --git a/source3/passdb/pdb_interface.c b/source3/passdb/pdb_interface.c index 5d0b625da5..b5d55bc3eb 100644 --- a/source3/passdb/pdb_interface.c +++ b/source3/passdb/pdb_interface.c @@ -1200,13 +1200,13 @@ static bool pdb_default_uid_to_sid(struct pdb_methods *methods, uid_t uid, unix_pw = sys_getpwuid( uid ); if ( !unix_pw ) { - DEBUG(4,("pdb_default_uid_to_rid: host has no idea of uid " + DEBUG(4,("pdb_default_uid_to_sid: host has no idea of uid " "%lu\n", (unsigned long)uid)); return False; } if ( !(sampw = samu_new( NULL )) ) { - DEBUG(0,("pdb_default_uid_to_rid: samu_new() failed!\n")); + DEBUG(0,("pdb_default_uid_to_sid: samu_new() failed!\n")); return False; } @@ -1216,7 +1216,7 @@ static bool pdb_default_uid_to_sid(struct pdb_methods *methods, uid_t uid, unbecome_root(); if (!ret) { - DEBUG(5, ("pdb_default_uid_to_rid: Did not find user " + DEBUG(5, ("pdb_default_uid_to_sid: Did not find user " "%s (%u)\n", unix_pw->pw_name, (unsigned int)uid)); TALLOC_FREE(sampw); return False; -- cgit