]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Remove stray debugging code that got in with the last commit.
authorBen Harris <bjh21@bjh21.me.uk>
Sat, 18 Jan 2003 22:02:22 +0000 (22:02 +0000)
committerBen Harris <bjh21@bjh21.me.uk>
Sat, 18 Jan 2003 22:02:22 +0000 (22:02 +0000)
[originally from svn r2650]

ssh.c

diff --git a/ssh.c b/ssh.c
index 7e8318397c12f609ccb524b97dfe9de8cbecddcd..4537f38f84a0bc0d2d063d96ab6d4d2c3e3939e8 100644 (file)
--- a/ssh.c
+++ b/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);
     }