Skip to content
Snippets Groups Projects
Commit 2c819d83 authored by Emmanuel Milou's avatar Emmanuel Milou
Browse files

Partial bug fix : iax account can be created again

parent fc487dbf
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@
*/
#include "accountcreator.h"
#include "sipaccount.h"
#ifdef HAVE_IAX2
#ifdef USE_IAX
#include "iaxaccount.h"
#endif
......@@ -39,7 +39,7 @@ AccountCreator::createAccount(AccountType type, AccountID accountID)
case SIP_ACCOUNT:
return new SIPAccount(accountID);
break;
#ifdef HAVE_IAX2
#ifdef USE_IAX
case IAX_ACCOUNT:
return new IAXAccount(accountID);
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment