diff options
-rw-r--r-- | src/libcharon/plugins/tnc_imc/tnc_imc_plugin.c | 3 | ||||
-rw-r--r-- | src/libcharon/plugins/tnc_imv/tnc_imv_plugin.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/libcharon/plugins/tnc_imc/tnc_imc_plugin.c b/src/libcharon/plugins/tnc_imc/tnc_imc_plugin.c index 683efc10b..b6effba60 100644 --- a/src/libcharon/plugins/tnc_imc/tnc_imc_plugin.c +++ b/src/libcharon/plugins/tnc_imc/tnc_imc_plugin.c @@ -133,7 +133,8 @@ static bool load_imcs(char *filename) imc->destroy(imc); return FALSE; } - DBG1(DBG_TNC, "IMC \"%s\" loaded from '%s'", name, path); + DBG1(DBG_TNC, "IMC %u \"%s\" loaded from '%s'", imc->get_id(imc), + name, path); } munmap(addr, sb.st_size); close(fd); diff --git a/src/libcharon/plugins/tnc_imv/tnc_imv_plugin.c b/src/libcharon/plugins/tnc_imv/tnc_imv_plugin.c index 54162656b..52c39a85a 100644 --- a/src/libcharon/plugins/tnc_imv/tnc_imv_plugin.c +++ b/src/libcharon/plugins/tnc_imv/tnc_imv_plugin.c @@ -133,7 +133,8 @@ static bool load_imvs(char *filename) imv->destroy(imv); return FALSE; } - DBG1(DBG_TNC, "IMV \"%s\" loaded from '%s'", name, path); + DBG1(DBG_TNC, "IMV %u \"%s\" loaded from '%s'", imv->get_id(imv), + name, path); } munmap(addr, sb.st_size); close(fd); |