Mercurial > dropbear
comparison packet.c @ 535:21490eea261d
Remove extraneous debugging
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 03 Mar 2009 13:20:00 +0000 |
parents | 0431915df79f |
children | ccdc4c6183c0 |
comparison
equal
deleted
inserted
replaced
534:0431915df79f | 535:21490eea261d |
---|---|
248 &ses.keys->recv.cipher_state) != CRYPT_OK) { | 248 &ses.keys->recv.cipher_state) != CRYPT_OK) { |
249 dropbear_exit("error decrypting"); | 249 dropbear_exit("error decrypting"); |
250 } | 250 } |
251 buf_incrpos(ses.readbuf, len); | 251 buf_incrpos(ses.readbuf, len); |
252 | 252 |
253 printhex("readbuf decrypted", ses.readbuf->data, ses.readbuf->len); | |
254 | |
255 /* check the hmac */ | 253 /* check the hmac */ |
256 if (checkmac() != DROPBEAR_SUCCESS) { | 254 if (checkmac() != DROPBEAR_SUCCESS) { |
257 dropbear_exit("Integrity error"); | 255 dropbear_exit("Integrity error"); |
258 } | 256 } |
259 | 257 |