From eba568563cfaf8debef3e675509248ef93c162d9 Mon Sep 17 00:00:00 2001 From: Andreas Steffen Date: Tue, 24 Nov 2009 16:45:52 +0100 Subject: [PATCH] changed error messages in the case of faulty esp and ike strings --- src/pluto/connections.c | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/src/pluto/connections.c b/src/pluto/connections.c index 53d2ca317..a24f29dd6 100644 --- a/src/pluto/connections.c +++ b/src/pluto/connections.c @@ -1059,15 +1059,14 @@ void add_connection(const whack_message_t *wm) ) if (c->alg_info_esp) { - if (c->alg_info_esp->alg_info_cnt==0) + if (c->alg_info_esp->alg_info_cnt == 0) { - loglog(RC_LOG_SERIOUS - , "got 0 transforms for esp=\"%s\"", wm->esp); + loglog(RC_LOG_SERIOUS, "got 0 esp transforms"); } } else { - loglog(RC_LOG_SERIOUS, "esp string error"); + loglog(RC_LOG_SERIOUS, "syntax error in esp string"); } } @@ -1090,15 +1089,14 @@ void add_connection(const whack_message_t *wm) ) if (c->alg_info_ike) { - if (c->alg_info_ike->alg_info_cnt==0) + if (c->alg_info_ike->alg_info_cnt == 0) { - loglog(RC_LOG_SERIOUS - , "got 0 transforms for ike=\"%s\"", wm->ike); + loglog(RC_LOG_SERIOUS, "got 0 ike transforms"); } } else { - loglog(RC_LOG_SERIOUS, "ike string error:"); + loglog(RC_LOG_SERIOUS, "syntax error in ike string"); } }