diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2014-05-25 16:23:11 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2014-05-25 16:23:11 +0000 |
commit | 9f3e60e41f953c417212980e75e4c1a603687a50 (patch) | |
tree | 22a42ab9cdfd4f39bbf3cfedca229a979ecb0e26 /lib/libssl/d1_pkt.c | |
parent | 0912697e9f4d270f2d0097582b900d5f0b761cf3 (diff) |
Remove TLS_DEBUG, SSL_DEBUG, CIPHER_DEBUG and OPENSSL_RI_DEBUG. Much of
this is sporadic, hacked up and can easily be put back in an improved form
should we ever need it.
ok miod@
Diffstat (limited to 'lib/libssl/d1_pkt.c')
-rw-r--r-- | lib/libssl/d1_pkt.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/libssl/d1_pkt.c b/lib/libssl/d1_pkt.c index a9ccc6d3496..0273db236c5 100644 --- a/lib/libssl/d1_pkt.c +++ b/lib/libssl/d1_pkt.c @@ -427,11 +427,6 @@ dtls1_process_record(SSL *s) goto err; } -#ifdef TLS_DEBUG - printf("dec %d\n", rr->length); - { unsigned int z; for (z = 0; z<rr->length; z++) printf("%02X%c", rr->data[z],((z+1)%16)?' ':'\n'); } - printf("\n"); -#endif /* r->length is now the compressed data plus mac */ if ((sess != NULL) && (s->enc_read_ctx != NULL) && |