aboutsummaryrefslogtreecommitdiffstats
path: root/src/libtls/tls_peer.c
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2010-08-24 09:00:52 +0200
committerAndreas Steffen <andreas.steffen@strongswan.org>2010-08-24 09:02:51 +0200
commitc1a929daa7f0763fe78b6fe1594b482c946253c7 (patch)
tree92ad62854bca39cc8e75733b3a7c75821f7e28e1 /src/libtls/tls_peer.c
parentbda7d9d940d73f0a0d5b19136d99ea16b5178844 (diff)
downloadstrongswan-c1a929daa7f0763fe78b6fe1594b482c946253c7.tar.bz2
strongswan-c1a929daa7f0763fe78b6fe1594b482c946253c7.tar.xz
removed some redundant debug output
Diffstat (limited to 'src/libtls/tls_peer.c')
-rw-r--r--src/libtls/tls_peer.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/libtls/tls_peer.c b/src/libtls/tls_peer.c
index a08e411c7..537d0f9a0 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]);
}