From 4fa542751bd1f022c6f240b806afa580143d6e7c Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Thu, 19 Jan 2023 13:59:41 +0100 Subject: [PATCH] test-sip: Use su_random() (not su_random64()) su_random64() is not exposed in the freeswitch fork of sofia-sip. --- plugins/provider/tests/test-sip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/provider/tests/test-sip.c b/plugins/provider/tests/test-sip.c index d9c013f..e40789a 100644 --- a/plugins/provider/tests/test-sip.c +++ b/plugins/provider/tests/test-sip.c @@ -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);