summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkrw <krw@openbsd.org>2019-01-18 01:46:11 +0000
committerkrw <krw@openbsd.org>2019-01-18 01:46:11 +0000
commit05f85b702431c65b71ff275d21d7cc22bb7453f1 (patch)
tree3c9f6a052a0f1450a86e6ae60178565e45475723
parentBe consistent in explicitly testing memcmp() return values. (diff)
downloadwireguard-openbsd-05f85b702431c65b71ff275d21d7cc22bb7453f1.tar.xz
wireguard-openbsd-05f85b702431c65b71ff275d21d7cc22bb7453f1.zip
Yet another long line broke cover.
-rw-r--r--sbin/dhclient/clparse.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/dhclient/clparse.c b/sbin/dhclient/clparse.c
index fcdb6fde1d1..f396d9302cb 100644
--- a/sbin/dhclient/clparse.c
+++ b/sbin/dhclient/clparse.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: clparse.c,v 1.177 2019/01/18 01:38:58 krw Exp $ */
+/* $OpenBSD: clparse.c,v 1.178 2019/01/18 01:46:11 krw Exp $ */
/* Parser for dhclient config and lease files. */
@@ -199,8 +199,8 @@ read_lease_db(char *name, struct client_lease_tq *tq)
for (;;) {
if (parse_lease(cfile, name, &lease) == 1) {
/*
- * The new lease will supersede a lease with the same ssid
- * AND the same Client Identifier AND the same
+ * The new lease will supersede a lease with the same
+ * ssid AND the same Client Identifier AND the same
* IP address.
*/
TAILQ_FOREACH_SAFE(lp, tq, next, nlp) {