diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-10-29 02:10:03 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-10-29 02:10:03 +0000 |
commit | 7b584cbf8103cf78a8db3cbb08e378ff5a47a4b9 (patch) | |
tree | a283b998caf4727d0ddc8b9a342061d39c2db3ba /sys/netinet/ip_ah.h | |
parent | a0d9dd4e06ca24923b8a0e6c811ac694972ae2e9 (diff) |
Get rid of unnecessary third argument in *_output routines of IPsec.
Diffstat (limited to 'sys/netinet/ip_ah.h')
-rw-r--r-- | sys/netinet/ip_ah.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/netinet/ip_ah.h b/sys/netinet/ip_ah.h index 2bf947df5c3..c08e18a9c58 100644 --- a/sys/netinet/ip_ah.h +++ b/sys/netinet/ip_ah.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ah.h,v 1.16 1999/04/11 19:41:37 niklas Exp $ */ +/* $OpenBSD: ip_ah.h,v 1.17 1999/10/29 02:10:01 angelos Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), @@ -96,8 +96,7 @@ struct ah_new #ifdef _KERNEL void ah_input __P((struct mbuf *, ...)); -int ah_output __P((struct mbuf *, struct sockaddr_encap *, - struct tdb *, struct mbuf **)); +int ah_output __P((struct mbuf *, struct tdb *, struct mbuf **)); int ah_sysctl __P((int *, u_int, void *, size_t *, void *, size_t)); extern int ah_enable; |