diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-08-01 05:29:37 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-08-01 05:29:37 +0000 |
commit | 684dde92d673d168c31e4d452e95d3569873ad06 (patch) | |
tree | fdbfa062235e78559a5386a101f40365c14d224c /usr.sbin/authpf/authpf.c | |
parent | 80e2f1f463c6536690d3b4ab15426b9c5c5a75a1 (diff) |
tickets are now u_int32_t, not int, fixes tree breakage; from Andrey Smagin
Diffstat (limited to 'usr.sbin/authpf/authpf.c')
-rw-r--r-- | usr.sbin/authpf/authpf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/authpf/authpf.c b/usr.sbin/authpf/authpf.c index ba56ec5b844..09eba8eeb86 100644 --- a/usr.sbin/authpf/authpf.c +++ b/usr.sbin/authpf/authpf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: authpf.c,v 1.66 2003/07/11 08:29:34 cedric Exp $ */ +/* $OpenBSD: authpf.c,v 1.67 2003/08/01 05:29:36 millert Exp $ */ /* * Copyright (C) 1998 - 2002 Bob Beck (beck@openbsd.org). @@ -849,7 +849,7 @@ pfctl_set_limit(struct pfctl *pf, const char *opt, unsigned int limit) int pfctl_define_table(char *name, int flags, int addrs, const char *anchor, - const char *ruleset, struct pfr_buffer *ab, int ticket) + const char *ruleset, struct pfr_buffer *ab, u_int32_t ticket) { fprintf(stderr, "table definitions not yet supported in authpf\n"); return (1); |