summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/idmap_cache.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/lib/idmap_cache.c b/source3/lib/idmap_cache.c
index 773579bd14..3669e93e58 100644
--- a/source3/lib/idmap_cache.c
+++ b/source3/lib/idmap_cache.c
@@ -54,7 +54,8 @@ bool idmap_cache_find_sid2unixid(const struct dom_sid *sid, struct unixid *id,
return false;
}
tmp_id.id = strtol(value, &endptr, 10);
- DEBUG(0, ("Parsing result of %s, endptr=%s, id=%llu\n", key, endptr, (unsigned long long)tmp_id.id));
+ DEBUG(10, ("Parsing result of %s, endptr=%s, id=%llu\n",
+ key, endptr, (unsigned long long)tmp_id.id));
ret = (*endptr == ':');
if (ret) {