diff options
author | 2019-01-05 19:59:12 +0000 | |
---|---|---|
committer | 2019-01-05 19:59:12 +0000 | |
commit | 15a89f6de18b817b77b394ede09d0df9b1943093 (patch) | |
tree | 7d0d8bdb2ace4db951859f31910b729495c4d154 | |
parent | In HTML output, man(7) .RS blocks get formatted as <div class="Bd-indent">, (diff) | |
download | wireguard-openbsd-15a89f6de18b817b77b394ede09d0df9b1943093.tar.xz wireguard-openbsd-15a89f6de18b817b77b394ede09d0df9b1943093.zip |
KNF nit.
-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 80c081f0c71..3d519d40afe 100644 --- a/sbin/dhclient/dispatch.c +++ b/sbin/dhclient/dispatch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dispatch.c,v 1.156 2019/01/03 16:42:30 krw Exp $ */ +/* $OpenBSD: dispatch.c,v 1.157 2019/01/05 19:59:12 krw Exp $ */ /* * Copyright 2004 Henning Brauer <henning@openbsd.org> @@ -253,7 +253,7 @@ bpffd_handler(struct interface_info *ifi) return; } - rslt = asprintf(&src, "%s (%s)",inet_ntoa(ifrom), ether_ntoa(&hfrom)); + rslt = asprintf(&src, "%s (%s)", inet_ntoa(ifrom), ether_ntoa(&hfrom)); if (rslt == -1) fatal("src"); |