diff options
author | 2019-01-18 02:16:31 +0000 | |
---|---|---|
committer | 2019-01-18 02:16:31 +0000 | |
commit | b7989a5d9ad7a78570376b15a6925b430f9162ba (patch) | |
tree | 4a51f5607f4b8b46a21855e1ffc54b34ba5aa559 | |
parent | Shuffle lease file reading code to improve clarity and shorten some (diff) | |
download | wireguard-openbsd-b7989a5d9ad7a78570376b15a6925b430f9162ba.tar.xz wireguard-openbsd-b7989a5d9ad7a78570376b15a6925b430f9162ba.zip |
Oops. Nuke debug statement that snuck it.
-rw-r--r-- | sbin/dhclient/clparse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/dhclient/clparse.c b/sbin/dhclient/clparse.c index db305bd62fd..af4042aec2a 100644 --- a/sbin/dhclient/clparse.c +++ b/sbin/dhclient/clparse.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clparse.c,v 1.179 2019/01/18 02:12:36 krw Exp $ */ +/* $OpenBSD: clparse.c,v 1.180 2019/01/18 02:16:31 krw Exp $ */ /* Parser for dhclient config and lease files. */ @@ -201,7 +201,7 @@ read_lease_db(char *name, struct client_lease_tq *tq) while (feof(cfile) == 0) { if (parse_lease(cfile, name, &lease) == 0) continue; - log_warnx("%s: got a lease", log_procname); + /* * The new lease will supersede a lease with the same * ssid AND the same Client Identifier AND the same |