diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2019-01-05 19:59:13 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2019-01-05 19:59:13 +0000 |
commit | 4d5c5ae9564c060289ef65208830e024827a4aaa (patch) | |
tree | dacf7e053c3c355c324707a41eec31d4c5c289c9 /sbin/dhclient/dispatch.c | |
parent | 586100cf29880317a33fb2a1a04c5084f4f4d43f (diff) |
KNF nit.
Diffstat (limited to 'sbin/dhclient/dispatch.c')
-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"); |