mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2025-01-05 19:15:32 +00:00
sip: origin: Fix nua_authenticate call
nua_* calls need TAG_END or TAG_NULL as the final parameter.
This commit is contained in:
parent
0d467244b2
commit
21e72c9e12
1 changed files with 1 additions and 1 deletions
|
@ -318,7 +318,7 @@ sip_authenticate (CallsSipOrigin *origin,
|
|||
|
||||
auth = g_strdup_printf ("%s:%s:%s:%s",
|
||||
scheme, realm, origin->user, origin->password);
|
||||
nua_authenticate (nh, NUTAG_AUTH (auth));
|
||||
nua_authenticate (nh, NUTAG_AUTH (auth), TAG_END ());
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue