Fixed return value if SIG payload missing

This commit is contained in:
Martin Willi 2011-12-15 10:01:35 +01:00
parent 00d8823242
commit 4ac137135a
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ METHOD(authenticator_t, process, status_t,
if (!sig_payload)
{
DBG1(DBG_IKE, "SIG payload missing in message");
return FALSE;
return FAILED;
}
id = this->ike_sa->get_other_id(this->ike_sa);