diff options
author | 2017-03-08 15:46:36 +0000 | |
---|---|---|
committer | 2017-03-08 15:46:36 +0000 | |
commit | c4d80df2e2015b116405f631819c22816dc5dd9e (patch) | |
tree | 0655796b06a3cabd7cc13a6276eeb7fd7b6f4c15 | |
parent | Move a line of code to group together code that will be mediated (diff) | |
download | wireguard-openbsd-c4d80df2e2015b116405f631819c22816dc5dd9e.tar.xz wireguard-openbsd-c4d80df2e2015b116405f631819c22816dc5dd9e.zip |
Stray #endif w/o comment.
-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; |