M2PA Normal and Emergency proving were reversed.

git-svn-id: http://voip.null.ro/svn/yate@3064 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2010-02-03 23:32:07 +00:00
parent 8be9e9991a
commit 80a2af15b4
1 changed files with 1 additions and 1 deletions

View File

@ -470,7 +470,7 @@ bool SS7M2PA::control(Operation oper, NamedList* params)
case Align:
{
bool em = params && params->getBoolValue("emergency");
m_state = em ? ProvingNormal : ProvingEmergency;
m_state = em ? ProvingEmergency : ProvingNormal;
if (m_autostart)
startAlignment();
return true;