changed error messages in the case of faulty esp and ike strings

This commit is contained in:
Andreas Steffen
2009-11-24 16:45:52 +01:00
parent 2eeab939a0
commit eba568563c
+6 -8
View File
@@ -1059,15 +1059,14 @@ void add_connection(const whack_message_t *wm)
) )
if (c->alg_info_esp) 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 loglog(RC_LOG_SERIOUS, "got 0 esp transforms");
, "got 0 transforms for esp=\"%s\"", wm->esp);
} }
} }
else 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)
{ {
if (c->alg_info_ike->alg_info_cnt==0) if (c->alg_info_ike->alg_info_cnt == 0)
{ {
loglog(RC_LOG_SERIOUS loglog(RC_LOG_SERIOUS, "got 0 ike transforms");
, "got 0 transforms for ike=\"%s\"", wm->ike);
} }
} }
else else
{ {
loglog(RC_LOG_SERIOUS, "ike string error:"); loglog(RC_LOG_SERIOUS, "syntax error in ike string");
} }
} }