diff options
author | Cedric Berger <cedric@cvs.openbsd.org> | 2003-07-03 21:09:14 +0000 |
---|---|---|
committer | Cedric Berger <cedric@cvs.openbsd.org> | 2003-07-03 21:09:14 +0000 |
commit | f231113e2426ef83d1f4662298c597f2d2719ed5 (patch) | |
tree | 637486e17e2572bb41e31d5ee56b03b09519932b /usr.sbin/authpf/authpf.c | |
parent | 32fa3f66af0173202391c52602d9e9729b507801 (diff) |
Bye bye atexit(), bye bye globals...
The pfctl.c part will probably need some further improvements.
ok henning@
Diffstat (limited to 'usr.sbin/authpf/authpf.c')
-rw-r--r-- | usr.sbin/authpf/authpf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/authpf/authpf.c b/usr.sbin/authpf/authpf.c index 56183c9b7e5..0656e30babf 100644 --- a/usr.sbin/authpf/authpf.c +++ b/usr.sbin/authpf/authpf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: authpf.c,v 1.63 2003/07/03 09:13:05 cedric Exp $ */ +/* $OpenBSD: authpf.c,v 1.64 2003/07/03 21:09:13 cedric Exp $ */ /* * Copyright (C) 1998 - 2002 Bob Beck (beck@openbsd.org). @@ -848,7 +848,8 @@ pfctl_set_limit(struct pfctl *pf, const char *opt, unsigned int limit) int pfctl_define_table(char *name, int flags, int addrs, int noaction, - const char *anchor, const char *ruleset, struct pfr_buffer *ab) + const char *anchor, const char *ruleset, struct pfr_buffer *ab, + int ticket) { fprintf(stderr, "table definitions not yet supported in authpf\n"); return (1); |