diff options
Diffstat (limited to 'src/libcharon/plugins/tnccs_11/tnccs_11.c')
-rw-r--r-- | src/libcharon/plugins/tnccs_11/tnccs_11.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/libcharon/plugins/tnccs_11/tnccs_11.c b/src/libcharon/plugins/tnccs_11/tnccs_11.c index b5b2a8a34..2d2c4a1e5 100644 --- a/src/libcharon/plugins/tnccs_11/tnccs_11.c +++ b/src/libcharon/plugins/tnccs_11/tnccs_11.c @@ -26,7 +26,7 @@ #include <debug.h> #include <threading/mutex.h> #include <tnc/tncif.h> -#include <tnc/tncifimv_names.h> +#include <tnc/tncifimv.h> #include <tnc/tnccs/tnccs.h> typedef struct private_tnccs_11_t private_tnccs_11_t; @@ -153,7 +153,7 @@ static void handle_message(private_tnccs_11_t *this, tnccs_msg_t *msg) break; } DBG1(DBG_TNC, "TNC recommendation is '%N'", - action_recommendation_names, rec); + TNC_IMV_Action_Recommendation_names, rec); switch (rec) { case TNC_IMV_ACTION_RECOMMENDATION_ALLOW: @@ -436,7 +436,8 @@ METHOD(tls_t, is_complete, bool, if (this->recs && this->recs->have_recommendation(this->recs, &rec, &eval)) { DBG2(DBG_TNC, "Final recommendation is '%N' and evaluation is '%N'", - action_recommendation_names, rec, evaluation_result_names, eval); + TNC_IMV_Action_Recommendation_names, rec, + TNC_IMV_Evaluation_Result_names, eval); return charon->imvs->enforce_recommendation(charon->imvs, rec); } |