diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2005-04-13 18:25:29 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2005-04-13 18:25:29 +0000 |
commit | e8313c062e552ad61ef957096a489456cfa1395e (patch) | |
tree | 8490116250889330892a56d9342cd98e0b803be9 /usr.sbin/hostapd/privsep.c | |
parent | fbd9185cd25b95eabb882ad60bd5546ac6bfc50d (diff) |
KNF
Diffstat (limited to 'usr.sbin/hostapd/privsep.c')
-rw-r--r-- | usr.sbin/hostapd/privsep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/hostapd/privsep.c b/usr.sbin/hostapd/privsep.c index 5a395b82991..dd8eec9e81c 100644 --- a/usr.sbin/hostapd/privsep.c +++ b/usr.sbin/hostapd/privsep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: privsep.c,v 1.1 2005/04/13 18:12:23 reyk Exp $ */ +/* $OpenBSD: privsep.c,v 1.2 2005/04/13 18:25:28 henning Exp $ */ /* * Copyright (c) 2004, 2005 Reyk Floeter <reyk@vantronix.net> @@ -131,7 +131,6 @@ hostapd_priv_init(struct hostapd_config *cfg) return; } - /* * Privileged mother process */ @@ -237,7 +236,8 @@ hostapd_priv(int fd, short sig, void *arg) node.ni_rssi = sta.sig_info; node.ni_capinfo = sta.capinfo; - hostapd_must_write(fd, &node, sizeof(struct hostapd_node)); + hostapd_must_write(fd, &node, + sizeof(struct hostapd_node)); } break; |