removed some redundant debug output

This commit is contained in:
Andreas Steffen
2010-08-24 09:02:51 +02:00
parent bda7d9d940
commit c1a929daa7
2 changed files with 0 additions and 4 deletions
-2
View File
@@ -413,11 +413,9 @@ static status_t send_client_hello(private_tls_peer_t *this,
/* add TLS cipher suites */
count = this->crypto->get_cipher_suites(this->crypto, &suites);
DBG2(DBG_TLS, "sending %d TLS cipher suites:", count);
writer->write_uint16(writer, count * 2);
for (i = 0; i < count; i++)
{
DBG2(DBG_TLS, " %N", tls_cipher_suite_names, suites[i]);
writer->write_uint16(writer, suites[i]);
}
-2
View File
@@ -433,8 +433,6 @@ static status_t send_server_hello(private_tls_server_t *this,
writer->write_data8(writer, chunk_empty);
/* add selected TLS cipher suite */
DBG2(DBG_TLS, "sending TLS cipher suite: %N",
tls_cipher_suite_names, this->suite);
writer->write_uint16(writer, this->suite);
/* NULL compression only */