From 81ca9ab53b232529911ccdc3e427dffdae78bfa9 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Wed, 30 Apr 2014 12:14:46 +0200 Subject: s3:passdb: improve a debug message in pdb_default_sid_to_id() Signed-off-by: Michael Adam Reviewed-by: Andrew Bartlett --- source3/passdb/pdb_interface.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source3/passdb') diff --git a/source3/passdb/pdb_interface.c b/source3/passdb/pdb_interface.c index 20f38efe21..e2057e3b36 100644 --- a/source3/passdb/pdb_interface.c +++ b/source3/passdb/pdb_interface.c @@ -1519,7 +1519,10 @@ static bool pdb_default_sid_to_id(struct pdb_methods *methods, id->id = uid; break; default: - DEBUG(5, ("SID %s is our domain, but is not mapped to a user or group (got %d)\n", + DEBUG(5, ("SID %s belongs to our domain, and " + "an object exists in the database, " + "but it is neither a user nor a " + "group (got type %d).\n", sid_string_dbg(sid), type)); ret = false; } -- cgit