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

This commit is contained in:
Martin Willi
2012-03-20 17:31:30 +01:00
parent 9276f7121c
commit 253d7e3eff
+2 -1
View File
@@ -758,7 +758,8 @@ METHOD(task_t, process_r, status_t,
} }
case QM_NEGOTIATED: case QM_NEGOTIATED:
{ {
if (has_notify_errors(this, message)) if (message->get_exchange_type(message) == INFORMATIONAL_V1 ||
has_notify_errors(this, message))
{ {
return SUCCESS; return SUCCESS;
} }