mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
Fix bug when checking if a password confirmation popup should appear
This commit is contained in:
parent
c58b9784e6
commit
1cb6c12ad4
1 changed files with 1 additions and 1 deletions
|
|
@ -751,7 +751,7 @@ static void linphone_iphone_popup_password_request(LinphoneCore *lc, LinphoneAut
|
|||
bool foundMatchingConfig = false;
|
||||
while (accountList && !foundMatchingConfig) {
|
||||
LinphoneAccountParams const *accountParams = linphone_account_get_params(accountList->data);
|
||||
const char * configUsername = linphone_account_params_get_identity(accountParams);
|
||||
const char * configUsername = linphone_address_get_username(linphone_account_params_get_identity_address(accountParams));
|
||||
const char * configDomain = linphone_account_params_get_domain(accountParams);
|
||||
foundMatchingConfig = (strcmp(configUsername, usernameC) == 0) && (strcmp(configDomain, domainC) == 0);
|
||||
accountList = accountList->next;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue