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