Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
0bcc8921
Commit
0bcc8921
authored
Dec 04, 2019
by
Sylvain Berfini
🎩
Committed by
François Grisez
Dec 05, 2019
Browse files
Fixed auth issue when tester runs all suites sequentially
parent
95b256f4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
tester/accountmanager.c
tester/accountmanager.c
+2
-4
No files found.
tester/accountmanager.c
View file @
0bcc8921
...
...
@@ -410,15 +410,13 @@ static LinphoneAddress *account_manager_check_account(AccountManager *m, Linphon
if
(
original_ai
)
linphone_core_remove_auth_info
(
lc
,
original_ai
);
const
char
*
algorithm
=
linphone_config_get_string
(
linphone_core_get_config
(
lc
),
"assistant"
,
"algorithm"
,
NULL
);
ai
=
linphone_auth_info_new_for_algorithm
(
ai
=
linphone_auth_info_new
(
linphone_address_get_username
(
account
->
modified_identity
),
NULL
,
account
->
password
,
NULL
,
linphone_address_get_domain
(
account
->
modified_identity
),
linphone_address_get_domain
(
account
->
modified_identity
),
// realm = domain
algorithm
linphone_address_get_domain
(
account
->
modified_identity
)
// realm = domain
);
linphone_core_add_auth_info
(
lc
,
ai
);
linphone_auth_info_unref
(
ai
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment