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);