diff options
Diffstat (limited to 'sbin')
-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) { |