diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2018-02-28 22:16:57 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2018-02-28 22:16:57 +0000 |
commit | e78cfff25fb964e49a539123927ec8c3034c1388 (patch) | |
tree | 8055cab5f9876e77614b95462e8662e2b9a94453 /sbin/dhclient/dhcpd.h | |
parent | a26f70193a30aeec60cdd061d7cc026cb3015795 (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.h | 8 |
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" |