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