Remove stray debugging code that got in with the last commit.

[originally from svn r2650]
This commit is contained in:
Ben Harris 2003-01-18 22:02:22 +00:00
Родитель 35f3ef5cc9
Коммит eaf6cce661
1 изменённых файлов: 1 добавлений и 1 удалений

2
ssh.c
Просмотреть файл

@ -824,7 +824,7 @@ static int ssh1_rdpkt(Ssh ssh, unsigned char **data, int *datalen)
st->realcrc = crc32(ssh->pktin.data, st->biglen - 4);
st->gotcrc = GET_32BIT(ssh->pktin.data + st->biglen - 4);
if (st->gotcrc != st->realcrc) {
bombout((ssh,"Incorrect CRC received on packet: wanted 0x%08x, got 0x%08x", st->realcrc, st->gotcrc));
bombout((ssh,"Incorrect CRC received on packet"));
crReturn(0);
}