summaryrefslogtreecommitdiff
path: root/source4/lib/samba3/idmap.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-08-28 01:37:27 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:34:49 -0500
commit37059d70d9ef905bbcea715e93f5057caf0759d1 (patch)
tree7d92d4ea6740fa93dd82b6b0b99eb75aa26aeaa6 /source4/lib/samba3/idmap.c
parentdf384bfa25db741770627cb7b9cae0df5564d14f (diff)
downloadsamba-37059d70d9ef905bbcea715e93f5057caf0759d1.tar.gz
samba-37059d70d9ef905bbcea715e93f5057caf0759d1.tar.bz2
samba-37059d70d9ef905bbcea715e93f5057caf0759d1.zip
r9700: Change DATA_BLOB in ejs back to struct datablob
Support writing idmap mappings to winbind.ldif (This used to be commit 3709def35303f1afed0f344628fe2c89250ee087)
Diffstat (limited to 'source4/lib/samba3/idmap.c')
-rw-r--r--source4/lib/samba3/idmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/samba3/idmap.c b/source4/lib/samba3/idmap.c
index ce3d098d3a..ad0ef72ef2 100644
--- a/source4/lib/samba3/idmap.c
+++ b/source4/lib/samba3/idmap.c
@@ -46,7 +46,7 @@ NTSTATUS samba3_read_idmap( const char *fn, TALLOC_CTX *ctx, struct samba3_idmap
/* Open idmap repository */
if (!(tdb = tdb_open(fn, 0, TDB_DEFAULT, O_RDONLY, 0644))) {
- DEBUG(0, ("idmap_init: Unable to open idmap database\n"));
+ DEBUG(0, ("idmap_init: Unable to open idmap database '%s'\n", fn));
return NT_STATUS_UNSUCCESSFUL;
}