From: Michael Adam Date: Wed, 30 Apr 2014 10:14:46 +0000 (+0200) Subject: s3:passdb: improve a debug message in pdb_default_sid_to_id() X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=81ca9ab53b232529911ccdc3e427dffdae78bfa9;p=mat%2Fsamba.git s3:passdb: improve a debug message in pdb_default_sid_to_id() Signed-off-by: Michael Adam Reviewed-by: Andrew Bartlett --- 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; }