summaryrefslogtreecommitdiff
path: root/packet.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2010-07-16 13:58:37 +1000
committerDamien Miller <djm@mindrot.org>2010-07-16 13:58:37 +1000
commitea1651c98e1814f54c8d4b027b31f7de1c34989c (patch)
treea5d7bf134dc527c239db41dfe7185fefa87d798f /packet.c
parent8a0268f1b3f62292d4124f8d158e0587c4f7c330 (diff)
- djm@cvs.openbsd.org 2010/07/13 23:13:16
[auth-rsa.c channels.c jpake.c key.c misc.c misc.h monitor.c packet.c] [ssh-rsa.c] s/timing_safe_cmp/timingsafe_bcmp/g
Diffstat (limited to 'packet.c')
-rw-r--r--packet.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet.c b/packet.c
index 5c7ec2b5f..48f7fe613 100644
--- a/packet.c
+++ b/packet.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: packet.c,v 1.167 2010/07/13 11:52:06 djm Exp $ */ 1/* $OpenBSD: packet.c,v 1.168 2010/07/13 23:13:16 djm Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -1307,7 +1307,7 @@ packet_read_poll2(u_int32_t *seqnr_p)
1307 macbuf = mac_compute(mac, active_state->p_read.seqnr, 1307 macbuf = mac_compute(mac, active_state->p_read.seqnr,
1308 buffer_ptr(&active_state->incoming_packet), 1308 buffer_ptr(&active_state->incoming_packet),
1309 buffer_len(&active_state->incoming_packet)); 1309 buffer_len(&active_state->incoming_packet));
1310 if (timing_safe_cmp(macbuf, buffer_ptr(&active_state->input), 1310 if (timingsafe_bcmp(macbuf, buffer_ptr(&active_state->input),
1311 mac->mac_len) != 0) { 1311 mac->mac_len) != 0) {
1312 logit("Corrupted MAC on input."); 1312 logit("Corrupted MAC on input.");
1313 if (need > PACKET_MAX_SIZE) 1313 if (need > PACKET_MAX_SIZE)