diff options
Diffstat (limited to 'packet.c')
-rw-r--r-- | packet.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: packet.c,v 1.166 2009/06/27 09:29:06 andreas 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 (memcmp(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) |