diff --git a/options.h b/options.h
index def8ccb2f3486819f2d30f08516ba974b7149a20..c13a12e92f65926bbe1c9724aad5a806e1b0fa75 100644
--- a/options.h
+++ b/options.h
@@ -46,9 +46,10 @@
 /*#define NO_FAST_EXPTMOD*/
 
 /* Set this if you want to use the DROPBEAR_SMALL_CODE option. This can save
-several kB in binary size, however will make the symmetrical ciphers (AES, DES
-etc) slower (perhaps by 50%). Recommended for most small systems. */
-#define DROPBEAR_SMALL_CODE
+several kB in binary size however will make the symmetrical ciphers and hashes
+slower, perhaps by 50%. Recommended for small systems that aren't doing
+much traffic. */
+/*#define DROPBEAR_SMALL_CODE*/
 
 /* Enable X11 Forwarding - server only */
 #define ENABLE_X11FWD
diff --git a/packet.c b/packet.c
index 6a294f48a5e22b35b0a263b32f3ef039044171d6..37ffdd2dd988e42b3467b35570c998b3dea4452b 100644
--- a/packet.c
+++ b/packet.c
@@ -250,8 +250,6 @@ void decrypt_packet() {
 	}
 	buf_incrpos(ses.readbuf, len);
 
-	printhex("readbuf decrypted", ses.readbuf->data, ses.readbuf->len);
-
 	/* check the hmac */
 	if (checkmac() != DROPBEAR_SUCCESS) {
 		dropbear_exit("Integrity error");