diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2019-01-18 02:16:32 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2019-01-18 02:16:32 +0000 |
commit | 8261825b678f301eec2e4c67e16d35f3a1c81f12 (patch) | |
tree | 5e3b89078a211feb3e399bd8a8f25353fcfc9f9c | |
parent | 7c864c14fb1269a071289e0d589d4dc6be3a68e1 (diff) |
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 |