1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-12-04 20:07:36 +00:00

test-sip: Use su_random() (not su_random64())

su_random64() is not exposed in the freeswitch fork of sofia-sip.
This commit is contained in:
Florian Weimer 2023-01-19 13:59:41 +01:00 committed by Evangelos Ribeiro Tzaras
parent 61b81a285c
commit 4fa542751b

View file

@ -430,7 +430,7 @@ main (int argc,
gst_init (NULL, NULL);
/* this is a workaround for an issue with sofia: https://github.com/freeswitch/sofia-sip/issues/58 */
su_random64 ();
su_random ();
g_test_add ("/Calls/SIP/provider_object", SipFixture, NULL,
setup_sip_provider, test_sip_provider_object, tear_down_sip_provider);