diff options
author | Michael Adam <obnox@samba.org> | 2013-03-04 12:52:26 +0100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2013-03-08 03:16:54 +0100 |
commit | 5372571fde68dcc7ccd0d3fa754bdfa148e7ca48 (patch) | |
tree | 086aff01668db2277f172f23bab401a8c9179361 | |
parent | 93d57dfbaf01c23fe8de5e9c8f076718b4cf566f (diff) | |
download | samba-5372571fde68dcc7ccd0d3fa754bdfa148e7ca48.tar.gz samba-5372571fde68dcc7ccd0d3fa754bdfa148e7ca48.tar.bz2 samba-5372571fde68dcc7ccd0d3fa754bdfa148e7ca48.zip |
s3:idmap: fix a debug message and lower its level
It is not an error to be logged at level 1 when a
domain has no explicitly configured idmap backend.
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Autobuild-User(master): Andrew Bartlett <abartlet@samba.org>
Autobuild-Date(master): Fri Mar 8 03:16:54 CET 2013 on sn-devel-104
-rw-r--r-- | source3/winbindd/idmap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/winbindd/idmap.c b/source3/winbindd/idmap.c index d5eeac659c..97a34d4bdd 100644 --- a/source3/winbindd/idmap.c +++ b/source3/winbindd/idmap.c @@ -285,7 +285,8 @@ static struct idmap_domain *idmap_init_named_domain(TALLOC_CTX *mem_ctx, backend = lp_parm_const_string(-1, config_option, "backend", NULL); if (backend == NULL) { - DEBUG(1, ("no backend defined for %s\n", config_option)); + DEBUG(10, ("no idmap backend configured for domain '%s'\n", + domname)); goto fail; } |