diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2018-11-04 16:32:12 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2018-11-04 16:32:12 +0000 |
commit | b4c73b08a1773d2addf70566f28b0cfc01a2f5b8 (patch) | |
tree | e143ecbb67dce20b25d52f66f2dd9172849156ca /sbin/dhclient/dispatch.c | |
parent | 6b1fd62d83841d1a71bb695ee05e41e671e265b8 (diff) |
No names in function prototypes. Spaces after commas in
function prototypes.
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 5cfd64715d4..ed83f460478 100644 --- a/sbin/dhclient/dispatch.c +++ b/sbin/dhclient/dispatch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dispatch.c,v 1.152 2018/11/02 16:15:55 krw Exp $ */ +/* $OpenBSD: dispatch.c,v 1.153 2018/11/04 16:32:11 krw Exp $ */ /* * Copyright 2004 Henning Brauer <henning@openbsd.org> @@ -72,7 +72,7 @@ #include "privsep.h" -void packethandler(struct interface_info *ifi); +void packethandler(struct interface_info *); void flush_unpriv_ibuf(void); void sendhup(void); |