28 lines
901 B
Diff
28 lines
901 B
Diff
commit 0095435db8228d5a88ec35a63cb64271e2e648a8
|
|
Author: Steve Dickson <steved@redhat.com>
|
|
Date: Thu Dec 19 12:48:31 2019 -0500
|
|
|
|
libnfsidmap: Turn off default verbosity
|
|
|
|
Commit f080188e changed the library's verbosity
|
|
to be on by default. The patch turns it off by
|
|
default
|
|
|
|
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1774787
|
|
|
|
Signed-off-by: Steve Dickson <steved@redhat.com>
|
|
|
|
diff --git a/support/nfsidmap/libnfsidmap.c b/support/nfsidmap/libnfsidmap.c
|
|
index 9299e652..d11710f1 100644
|
|
--- a/support/nfsidmap/libnfsidmap.c
|
|
+++ b/support/nfsidmap/libnfsidmap.c
|
|
@@ -101,7 +101,7 @@ static void default_logger(const char *fmt, ...)
|
|
|
|
#pragma GCC visibility pop
|
|
nfs4_idmap_log_function_t idmap_log_func = default_logger;
|
|
-int idmap_verbosity = 2;
|
|
+int idmap_verbosity = 0;
|
|
#pragma GCC visibility push(hidden)
|
|
|
|
static int id_as_chars(char *name, uid_t *id)
|