From: Andreas Steffen Date: Tue, 24 Aug 2010 07:00:52 +0000 (+0200) Subject: removed some redundant debug output X-Git-Tag: 4.5.0~417 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c1a929daa7f0763fe78b6fe1594b482c946253c7;p=thirdparty%2Fstrongswan.git removed some redundant debug output --- diff --git a/src/libtls/tls_peer.c b/src/libtls/tls_peer.c index a08e411c75..537d0f9a0f 100644 --- a/src/libtls/tls_peer.c +++ b/src/libtls/tls_peer.c @@ -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]); } diff --git a/src/libtls/tls_server.c b/src/libtls/tls_server.c index a169770456..54c4633be5 100644 --- a/src/libtls/tls_server.c +++ b/src/libtls/tls_server.c @@ -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 */