From: Andreas Steffen Date: Sun, 12 Dec 2010 11:55:14 +0000 (+0100) Subject: reverted Connection ID to capital letters X-Git-Tag: 4.5.1~380 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=836d9a795bdb62ddaea085af0a7da96e60a0431e;p=thirdparty%2Fstrongswan.git reverted Connection ID to capital letters --- diff --git a/src/libcharon/plugins/tnccs_20/tnccs_20.c b/src/libcharon/plugins/tnccs_20/tnccs_20.c index 13e6c4d745..0bdd8f1e85 100644 --- a/src/libcharon/plugins/tnccs_20/tnccs_20.c +++ b/src/libcharon/plugins/tnccs_20/tnccs_20.c @@ -308,7 +308,7 @@ METHOD(tls_t, process, status_t, } data = chunk_create(buf, buflen); - DBG1(DBG_TNC, "received TNCCS batch (%u bytes) for connection ID %u", + DBG1(DBG_TNC, "received TNCCS batch (%u bytes) for Connection ID %u", data.len, this->connection_id); DBG3(DBG_TNC, "%B", &data); batch = pb_tnc_batch_create_from_data(this->is_server, data); @@ -535,7 +535,7 @@ METHOD(tls_t, build, status_t, { this->batch->build(this->batch); data = this->batch->get_encoding(this->batch); - DBG1(DBG_TNC, "sending PB-TNC %N batch (%d bytes) for connection ID %u", + DBG1(DBG_TNC, "sending PB-TNC %N batch (%d bytes) for Connection ID %u", pb_tnc_batch_type_names, batch_type, data.len, this->connection_id); DBG3(DBG_TNC, "%B", &data);