Skip to content
Snippets Groups Projects
Commit 65ab34ef authored by Adrien Béraud's avatar Adrien Béraud Committed by Guillaume Roguez
Browse files

manager: fix typo and minor constness

Tuleap: #13
Change-Id: I8bc2d5e5b73bfb9461aeaea13ec1923567c64e7d
parent 761d38e6
Branches
Tags
No related merge requests found
......@@ -266,7 +266,7 @@ Manager::init(const std::string &config_file)
setSipLogLevel();
PJSIP_TRY(pjlib_util_init());
PJSIP_TRY(pjnath_init());
#undef TRY
#undef PJSIP_TRY
RING_DBG("pjsip version %s for %s initialized",
pj_get_version(), PJ_OS_NAME);
......@@ -2289,7 +2289,7 @@ Manager::getAccountList() const
using std::vector;
using std::string;
vector<string> account_order(loadAccountOrder());
const vector<string> account_order(loadAccountOrder());
// The IP2IP profile should always be available, and first in the list;
// however, it is possible that it was deleted by removeAccounts()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment