Don't process notifies in quick mode task when we get an INFORMATIONAL

This commit is contained in:
Martin Willi 2011-12-21 14:39:05 +01:00
parent 9276f7121c
commit 253d7e3eff
1 changed files with 2 additions and 1 deletions

View File

@ -758,7 +758,8 @@ METHOD(task_t, process_r, status_t,
}
case QM_NEGOTIATED:
{
if (has_notify_errors(this, message))
if (message->get_exchange_type(message) == INFORMATIONAL_V1 ||
has_notify_errors(this, message))
{
return SUCCESS;
}