summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sbin/isakmpd/ike_auth.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/isakmpd/ike_auth.c b/sbin/isakmpd/ike_auth.c
index bfdcfde757a..03db1a74d43 100644
--- a/sbin/isakmpd/ike_auth.c
+++ b/sbin/isakmpd/ike_auth.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ike_auth.c,v 1.39 2001/04/09 12:34:37 ho Exp $ */
+/* $OpenBSD: ike_auth.c,v 1.40 2001/05/24 03:15:37 angelos Exp $ */
/* $EOM: ike_auth.c,v 1.59 2000/11/21 00:21:31 angelos Exp $ */
/*
@@ -693,7 +693,8 @@ rsa_sig_decode_hash (struct message *msg)
id_found = 0;
for (i = 0; i < n; i++)
if (id_cert_len[i] == id_len
- && memcmp (id, id_cert[i], id_len) == 0)
+ && id[0] == id_cert[i][0]
+ && memcmp (id + 4, id_cert[i] + 4, id_len - 4) == 0)
{
id_found++;
break;