summaryrefslogtreecommitdiff
path: root/sbin/dhclient/dhcpd.h
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2018-02-28 22:16:57 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2018-02-28 22:16:57 +0000
commite78cfff25fb964e49a539123927ec8c3034c1388 (patch)
tree8055cab5f9876e77614b95462e8662e2b9a94453 /sbin/dhclient/dhcpd.h
parenta26f70193a30aeec60cdd061d7cc026cb3015795 (diff)
Now that log_debug() has been decyphered, replace DPRINTF() instances
with log_debug() so -v unleashes all debug output without having to compile a custom dhclient.
Diffstat (limited to 'sbin/dhclient/dhcpd.h')
-rw-r--r--sbin/dhclient/dhcpd.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/sbin/dhclient/dhcpd.h b/sbin/dhclient/dhcpd.h
index 92336535a85..89d6cc5063a 100644
--- a/sbin/dhclient/dhcpd.h
+++ b/sbin/dhclient/dhcpd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: dhcpd.h,v 1.253 2018/02/10 23:25:15 krw Exp $ */
+/* $OpenBSD: dhcpd.h,v 1.254 2018/02/28 22:16:56 krw Exp $ */
/*
* Copyright (c) 2004 Henning Brauer <henning@openbsd.org>
@@ -152,12 +152,6 @@ struct interface_info {
struct client_lease_tq lease_db;
};
-#ifdef DEBUG
-#define DPRINTF(...) log_debug(__VA_ARGS__)
-#else
-#define DPRINTF(...) do {} while(0)
-#endif
-
#define _PATH_DHCLIENT_CONF "/etc/dhclient.conf"
#define _PATH_LEASE_DB "/var/db/dhclient.leases"