From: Andreas Steffen Date: Thu, 19 Aug 2010 05:27:30 +0000 (+0200) Subject: removed debug output for TLS application data X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fd86fb518390f3b5e4acdd25db3a2316455b2e25;p=people%2Fms%2Fstrongswan.git removed debug output for TLS application data --- diff --git a/src/libtls/tls_fragmentation.c b/src/libtls/tls_fragmentation.c index 8265b8c95..474deaefd 100644 --- a/src/libtls/tls_fragmentation.c +++ b/src/libtls/tls_fragmentation.c @@ -153,7 +153,6 @@ static status_t process_application(private_tls_fragmentation_t *this, DBG1(DBG_IKE, "TLS fragment has invalid length"); return FAILED; } - DBG2(DBG_IKE, "received TLS application data"); status = this->application->process(this->application, reader); if (status != NEED_MORE) { @@ -227,10 +226,6 @@ METHOD(tls_fragmentation_t, build, status_t, { *type = TLS_APPLICATION_DATA; this->output = chunk_clone(msg->get_buf(msg)); - if (this->output.len) - { - DBG2(DBG_IKE, "sending TLS application data"); - } } } }