From 083fe967e569c9c8b9dc1b996aeb31e9552c4da1 Mon Sep 17 00:00:00 2001 From: Andreas Steffen Date: Thu, 28 Apr 2011 13:27:44 +0200 Subject: [PATCH] adapted debug output --- src/libcharon/plugins/tnc_imc/tnc_imc_manager.c | 2 +- src/libcharon/plugins/tnc_imv/tnc_imv.c | 2 +- src/libcharon/plugins/tnc_imv/tnc_imv_manager.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libcharon/plugins/tnc_imc/tnc_imc_manager.c b/src/libcharon/plugins/tnc_imc/tnc_imc_manager.c index 5d38b6ea0..5ed6741a4 100644 --- a/src/libcharon/plugins/tnc_imc/tnc_imc_manager.c +++ b/src/libcharon/plugins/tnc_imc/tnc_imc_manager.c @@ -177,7 +177,7 @@ METHOD(imc_manager_t, receive_message, void, enumerator->destroy(enumerator); if (!type_supported) { - DBG2(DBG_TNC, "IMC_IMV message type 0x%08x not supported", message_type); + DBG2(DBG_TNC, "message type 0x%08x not supported by any IMC", message_type); } } diff --git a/src/libcharon/plugins/tnc_imv/tnc_imv.c b/src/libcharon/plugins/tnc_imv/tnc_imv.c index dffe542b7..f6459ad9d 100644 --- a/src/libcharon/plugins/tnc_imv/tnc_imv.c +++ b/src/libcharon/plugins/tnc_imv/tnc_imv.c @@ -116,7 +116,7 @@ METHOD(imv_t, set_message_types, void, memcpy(this->supported_types, supported_types, size); } *pos = '\0'; - DBG2(DBG_TNC, "IMC %u supports %u message types:%s", + DBG2(DBG_TNC, "IMV %u supports %u message types:%s", this->id, type_count, buf); } diff --git a/src/libcharon/plugins/tnc_imv/tnc_imv_manager.c b/src/libcharon/plugins/tnc_imv/tnc_imv_manager.c index 0ebecd4df..e3f54d7f1 100644 --- a/src/libcharon/plugins/tnc_imv/tnc_imv_manager.c +++ b/src/libcharon/plugins/tnc_imv/tnc_imv_manager.c @@ -245,7 +245,7 @@ METHOD(imv_manager_t, receive_message, void, enumerator->destroy(enumerator); if (!type_supported) { - DBG2(DBG_TNC, "IMC_IMV message type 0x%08x not supported", message_type); + DBG2(DBG_TNC, "message type 0x%08x not supported by any IMV", message_type); } }