Skip to content
Snippets Groups Projects
Commit 6fc8e992 authored by Jonathan Rose's avatar Jonathan Rose
Browse files

chan_sip: Fix a small TEST_FRAMEWORK related error that prevents compiling

Introduced with r366842, a function call made only with TEST_FRAMEWORK enabled
was missing an argument since the function arguments were changed.


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@366896 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 54268bca
Branches
Tags
No related merge requests found
......@@ -334,7 +334,7 @@ AST_TEST_DEFINE(test_sip_rtpqos_1)
ast_rtp_engine_register2(&test_engine, NULL);
/* Have to associate this with a SIP pvt and an ast_channel */
if (!(p = sip_alloc(NULL, NULL, 0, SIP_NOTIFY, NULL))) {
if (!(p = sip_alloc(NULL, NULL, 0, SIP_NOTIFY, NULL, NULL))) {
res = AST_TEST_NOT_RUN;
goto done;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment