diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-01-08 21:40:29 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-01-08 21:40:29 +0000 |
commit | f516dcb4a03468a0ee9f72fa265fd61d97333609 (patch) | |
tree | af3200378d968060024af9d8da984c0a2fbd6f32 /sys/netinet/ip_ipsp.h | |
parent | 4839fc21a520d1e38cad78de2a4c654b1c49b20f (diff) |
do not use random bits when not necessary, remove 8-byte block dependence
Diffstat (limited to 'sys/netinet/ip_ipsp.h')
-rw-r--r-- | sys/netinet/ip_ipsp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_ipsp.h b/sys/netinet/ip_ipsp.h index 935a6472736..ade1e34521d 100644 --- a/sys/netinet/ip_ipsp.h +++ b/sys/netinet/ip_ipsp.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ipsp.h,v 1.20 1998/11/25 11:47:17 niklas Exp $ */ +/* $OpenBSD: ip_ipsp.h,v 1.21 1999/01/08 21:40:28 deraadt Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), @@ -277,7 +277,7 @@ extern int esp_new_output(struct mbuf *, struct sockaddr_encap *, struct tdb *, extern struct mbuf *esp_new_input(struct mbuf *, struct tdb *); /* Padding */ -extern caddr_t m_pad(struct mbuf *, int); +extern caddr_t m_pad(struct mbuf *, int, int); /* Replay window */ extern int checkreplaywindow32(u_int32_t, u_int32_t, u_int32_t *, u_int32_t, |