diff options
author | 2014-05-23 17:36:59 +0000 | |
---|---|---|
committer | 2014-05-23 17:36:59 +0000 | |
commit | 40bc8fd18ff0636dac1a20f08129d61383a46cc3 (patch) | |
tree | b484e2015704a271c9961d6207ec2f8367a125e3 | |
parent | Clean up the SSL cipher initialisation and use C99 initialisers for (diff) | |
download | wireguard-openbsd-40bc8fd18ff0636dac1a20f08129d61383a46cc3.tar.xz wireguard-openbsd-40bc8fd18ff0636dac1a20f08129d61383a46cc3.zip |
Make DEBUG a bit easier to use by calling setlogmask(LOG_UPTO(LOG_DEBUG))
when it is set, and the current setlogmask(LOG_UPTO(LOG_INFO)) when it
is not set.
-rw-r--r-- | sbin/dhclient/dhclient.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sbin/dhclient/dhclient.c b/sbin/dhclient/dhclient.c index 8a04253e5b2..48ed8e59c82 100644 --- a/sbin/dhclient/dhclient.c +++ b/sbin/dhclient/dhclient.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dhclient.c,v 1.310 2014/05/23 15:26:22 krw Exp $ */ +/* $OpenBSD: dhclient.c,v 1.311 2014/05/23 17:36:59 krw Exp $ */ /* * Copyright 2004 Henning Brauer <henning@openbsd.org> @@ -402,7 +402,11 @@ main(int argc, char *argv[]) /* Initially, log errors to stderr as well as to syslogd. */ openlog(__progname, LOG_PID | LOG_NDELAY, LOG_DAEMON); +#ifdef DEBUG + setlogmask(LOG_UPTO(LOG_DEBUG)); +#else setlogmask(LOG_UPTO(LOG_INFO)); +#endif while ((ch = getopt(argc, argv, "c:di:l:L:qu")) != -1) switch (ch) { |