aboutsummaryrefslogtreecommitdiff
path: root/sbin/dhclient
diff options
context:
space:
mode:
authorSam Leffler <sam@FreeBSD.org>2008-03-22 16:18:07 +0000
committerSam Leffler <sam@FreeBSD.org>2008-03-22 16:18:07 +0000
commit043f1935e0540bf9429277c027bcc87df6ac1308 (patch)
tree33232cc13616ccf6563b2350e44a08f95feafbbf /sbin/dhclient
parentc20ee5ab6d400ce2910a34568f0965c281c78d70 (diff)
downloadsrc-043f1935e0540bf9429277c027bcc87df6ac1308.tar.gz
src-043f1935e0540bf9429277c027bcc87df6ac1308.zip
correct syslog mask so LOG_DEBUG msgs are not lost
MFC after: 2 weeks
Notes
Notes: svn path=/head/; revision=177500
Diffstat (limited to 'sbin/dhclient')
-rw-r--r--sbin/dhclient/dhclient.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/dhclient/dhclient.c b/sbin/dhclient/dhclient.c
index c2d3635b492c..949e12eb3f55 100644
--- a/sbin/dhclient/dhclient.c
+++ b/sbin/dhclient/dhclient.c
@@ -300,7 +300,7 @@ main(int argc, char *argv[])
/* Initially, log errors to stderr as well as to syslogd. */
openlog(__progname, LOG_PID | LOG_NDELAY, DHCPD_LOG_FACILITY);
- setlogmask(LOG_UPTO(LOG_INFO));
+ setlogmask(LOG_UPTO(LOG_DEBUG));
while ((ch = getopt(argc, argv, "bc:dl:qu")) != -1)
switch (ch) {