diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2017-03-08 15:46:37 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2017-03-08 15:46:37 +0000 |
commit | 1e1e4c9f4a8f8adebc292ce52a2fc7672dda29d0 (patch) | |
tree | cb5b54c1167f233116f140ba49652c197b5d45fb /sbin/dhclient | |
parent | 91a6e23da19009435dd81839abac3d3bfc4f4054 (diff) |
Stray #endif w/o comment.
Diffstat (limited to 'sbin/dhclient')
-rw-r--r-- | sbin/dhclient/dispatch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/dhclient/dispatch.c b/sbin/dhclient/dispatch.c index b903cb4fd9a..dfab902c6f1 100644 --- a/sbin/dhclient/dispatch.c +++ b/sbin/dhclient/dispatch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dispatch.c,v 1.116 2017/02/14 22:46:53 krw Exp $ */ +/* $OpenBSD: dispatch.c,v 1.117 2017/03/08 15:46:36 krw Exp $ */ /* * Copyright 2004 Henning Brauer <henning@openbsd.org> @@ -281,7 +281,7 @@ interface_status(struct interface_info *ifi) #ifdef DEBUG if (errno != EINVAL && errno != ENOTTY) log_debug("ioctl(SIOCGIFMEDIA) on %s", ifi->name); -#endif +#endif /* DEBUG */ ifi->flags |= IFI_NOMEDIA; goto active; |