summaryrefslogtreecommitdiff
path: root/packet.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-26 14:11:39 +1100
committerDamien Miller <djm@mindrot.org>2006-03-26 14:11:39 +1100
commit7cd4579eb3c5afd22ae24436fd2611cd3aa0150a (patch)
tree4360517ff0a5361e4d145277ca848ea09abf2bcf /packet.c
parenta5a2859275794e080fd1872006402a55498d7e95 (diff)
- djm@cvs.openbsd.org 2006/03/22 21:27:15
[deattack.c deattack.h packet.c] remove IV support from the CRC attack detector, OpenSSH has never used it - it only applied to IDEA-CFB, which we don't support. prompted by NetBSD Coverity report via elad AT netbsd.org; feedback markus@ "nuke it" deraadt@
Diffstat (limited to 'packet.c')
-rw-r--r--packet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/packet.c b/packet.c
index ee9369638..0121f8aee 100644
--- a/packet.c
+++ b/packet.c
@@ -988,7 +988,7 @@ packet_read_poll1(void)
* Ariel Futoransky(futo@core-sdi.com)
*/
if (!receive_context.plaintext &&
- detect_attack(buffer_ptr(&input), padded_len, NULL) == DEATTACK_DETECTED)
+ detect_attack(buffer_ptr(&input), padded_len) == DEATTACK_DETECTED)
packet_disconnect("crc32 compensation attack: network attack detected");
/* Decrypt data to incoming_packet. */