summaryrefslogtreecommitdiff
path: root/sys/netinet/ip_ahsha1.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/netinet/ip_ahsha1.c')
-rw-r--r--sys/netinet/ip_ahsha1.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/netinet/ip_ahsha1.c b/sys/netinet/ip_ahsha1.c
index 883383eb3b7..ef8d7831f89 100644
--- a/sys/netinet/ip_ahsha1.c
+++ b/sys/netinet/ip_ahsha1.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip_ahsha1.c,v 1.2 1997/06/24 12:15:21 provos Exp $ */
+/* $OpenBSD: ip_ahsha1.c,v 1.3 1997/06/24 20:48:41 provos Exp $ */
/*
* The author of this code is John Ioannidis, ji@tla.org,
@@ -191,11 +191,11 @@ ahsha1_input(struct mbuf *m, struct tdb *tdb)
for (off = sizeof(struct ip); off < (ip->ip_hl << 2);)
{
optval = ((u_int8_t *)ip)[off];
- SHA1Update(&ctx, &optval, 1);
switch (IPOPT_NUMBER(optval))
{
case IPOPT_EOL:
case IPOPT_NOP:
+ SHA1Update(&ctx, ipseczeroes, 1);
off++;
continue;
@@ -203,13 +203,13 @@ ahsha1_input(struct mbuf *m, struct tdb *tdb)
case 133:
case 134:
optval = ((u_int8_t *)ip)[off + 1];
- SHA1Update(&ctx, (u_int8_t *)ip + off + 1, optval - 1);
+ SHA1Update(&ctx, (u_int8_t *)ip + off, optval);
off += optval;
continue;
default:
- SHA1Update(&ctx, &optval, 1);
- SHA1Update(&ctx, ipseczeroes, optval - 2);
+ optval = ((u_int8_t *)ip)[off + 1];
+ SHA1Update(&ctx, ipseczeroes, optval);
off += optval;
continue;
}