diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-28 20:37:31 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-28 20:37:31 +0000 |
commit | 59797ef4bf58be452cfad7fbf3cbb4651edb877a (patch) | |
tree | f7ad52cefe893be13470f0c745f9b0ea7f23acb0 /usr.sbin/authpf/authpf.c | |
parent | c5a580d519116cc71d9d91ab94b71b9ec470098e (diff) |
() to (void)
Diffstat (limited to 'usr.sbin/authpf/authpf.c')
-rw-r--r-- | usr.sbin/authpf/authpf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/authpf/authpf.c b/usr.sbin/authpf/authpf.c index 440a749a2ac..c5b28c87449 100644 --- a/usr.sbin/authpf/authpf.c +++ b/usr.sbin/authpf/authpf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: authpf.c,v 1.61 2003/06/27 09:50:07 henning Exp $ */ +/* $OpenBSD: authpf.c,v 1.62 2003/06/28 20:37:29 deraadt Exp $ */ /* * Copyright (C) 1998 - 2002 Bob Beck (beck@openbsd.org). @@ -517,7 +517,7 @@ check_luser(char *luserdir, char *luser) * died ungracefully or were terminated) and remove them. */ static int -remove_stale_rulesets() +remove_stale_rulesets(void) { struct pfioc_ruleset prs; const int action[PF_RULESET_MAX] = { PF_SCRUB, @@ -681,7 +681,7 @@ error: * pfctl_kill_states from pfctl. */ static void -authpf_kill_states() +authpf_kill_states(void) { struct pfioc_state_kill psk; struct in_addr target; @@ -736,7 +736,7 @@ do_death(int active) } /* - * callbacks for parse_rules() + * callbacks for parse_rules(void) */ int |