diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-02-03 19:06:31 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-02-03 19:06:31 +0000 |
commit | 13741186943189817d5028e255b27df409c25741 (patch) | |
tree | d4e2f4cb2776a73477b29e5d7eda4efcea1dcd29 /sys/netinet/ip_esp_old.c | |
parent | 4549810c8673efeb8cc6a6458ad9eb23b78f57ef (diff) |
bad types; wileyc@sekiya.twics.co.jp
Diffstat (limited to 'sys/netinet/ip_esp_old.c')
-rw-r--r-- | sys/netinet/ip_esp_old.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_esp_old.c b/sys/netinet/ip_esp_old.c index 80e3bb6b8b5..7c4466bb09a 100644 --- a/sys/netinet/ip_esp_old.c +++ b/sys/netinet/ip_esp_old.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_esp_old.c,v 1.12 1998/01/21 18:43:34 provos Exp $ */ +/* $OpenBSD: ip_esp_old.c,v 1.13 1998/02/03 19:06:29 deraadt Exp $ */ /* * The author of this code is John Ioannidis, ji@tla.org, @@ -69,7 +69,7 @@ extern void des_ecb3_encrypt(caddr_t, caddr_t, caddr_t, caddr_t, caddr_t, int); extern void des_ecb_encrypt(caddr_t, caddr_t, caddr_t, int); extern void des_set_key(caddr_t, caddr_t); -extern encap_sendnotify(int, struct tdb *); +extern int encap_sendnotify(int, struct tdb *); static void des1_encrypt(void *, u_int8_t *); static void des3_encrypt(void *, u_int8_t *); |