mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-31 11:41:32 +01:00
dirmngr: Silence log output from dirmngr_ldap.
* dirmngr/dirmngr_ldap.c: Remove assert.h. (main): Replace assert by log_assert. * dirmngr/ldap.c (run_ldap_wrapper): Use debug options to pass verbose options to dirmngr_ldap. (start_cert_fetch_ldap): Ditto. -- verbose is a pretty common option in dirmngr.conf and it would clutter the logs with output from dirmngr_ldap. Now we require DBG_EXTPROG or DBG_LOOKUP to make dirmngr_ldap more verbose. Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
5789afc840
commit
d22506a343
@ -2235,7 +2235,8 @@ handle_connections (assuan_fd_t listen_fd)
|
||||
npth_timersub (&abstime, &curtime, &timeout);
|
||||
|
||||
#ifndef HAVE_W32_SYSTEM
|
||||
ret = npth_pselect (nfd+1, &read_fdset, NULL, NULL, &timeout, npth_sigev_sigmask());
|
||||
ret = npth_pselect (nfd+1, &read_fdset, NULL, NULL, &timeout,
|
||||
npth_sigev_sigmask());
|
||||
saved_errno = errno;
|
||||
|
||||
while (npth_sigev_get_pending(&signo))
|
||||
|
@ -29,7 +29,6 @@
|
||||
# include <signal.h>
|
||||
#endif
|
||||
#include <errno.h>
|
||||
#include <assert.h>
|
||||
#include <sys/time.h>
|
||||
#include <unistd.h>
|
||||
#ifndef USE_LDAPWRAPPER
|
||||
@ -343,7 +342,7 @@ ldap_wrapper_main (char **argv, estream_t outstream)
|
||||
usage (1);
|
||||
#else
|
||||
/* All passed arguments should be fine in this case. */
|
||||
assert (argc);
|
||||
log_assert (argc);
|
||||
#endif
|
||||
|
||||
#ifdef USE_LDAPWRAPPER
|
||||
|
@ -136,8 +136,12 @@ run_ldap_wrapper (ctrl_t ctrl,
|
||||
argv[argc++] = "--pass";
|
||||
argv[argc++] = pass;
|
||||
}
|
||||
if (opt.verbose)
|
||||
|
||||
if (DBG_LOOKUP)
|
||||
argv[argc++] = "-vv";
|
||||
else if (DBG_EXTPROG)
|
||||
argv[argc++] = "-v";
|
||||
|
||||
argv[argc++] = "--log-with-pid";
|
||||
if (multi_mode)
|
||||
argv[argc++] = "--multi";
|
||||
@ -564,8 +568,12 @@ start_cert_fetch_ldap (ctrl_t ctrl, cert_fetch_context_t *context,
|
||||
argv[argc++] = "--pass";
|
||||
argv[argc++] = pass;
|
||||
}
|
||||
if (opt.verbose)
|
||||
|
||||
if (DBG_LOOKUP)
|
||||
argv[argc++] = "-vv";
|
||||
else if (DBG_EXTPROG)
|
||||
argv[argc++] = "-v";
|
||||
|
||||
argv[argc++] = "--log-with-pid";
|
||||
argv[argc++] = "--multi";
|
||||
if (opt.ldaptimeout)
|
||||
|
Loading…
x
Reference in New Issue
Block a user