summaryrefslogtreecommitdiffstats
path: root/source3/passdb
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2014-04-30 12:14:46 +0200
committerAndrew Bartlett <abartlet@samba.org>2014-05-03 07:57:13 +0200
commit81ca9ab53b232529911ccdc3e427dffdae78bfa9 (patch)
treee59040ca100cb9012b88bb37f9c31721dddd2089 /source3/passdb
parent09fbc6c085e68348c6cc6798acf44b184d7d44bc (diff)
downloadsamba-81ca9ab53b232529911ccdc3e427dffdae78bfa9.tar.gz
samba-81ca9ab53b232529911ccdc3e427dffdae78bfa9.tar.xz
samba-81ca9ab53b232529911ccdc3e427dffdae78bfa9.zip
s3:passdb: improve a debug message in pdb_default_sid_to_id()
Signed-off-by: Michael Adam <obnox@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source3/passdb')
-rw-r--r--source3/passdb/pdb_interface.c5
1 files changed, 4 insertions, 1 deletions
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;
}