summaryrefslogtreecommitdiff
path: root/channels/sip
diff options
context:
space:
mode:
authorJonathan Rose <jrose@digium.com>2012-05-18 14:27:01 +0000
committerJonathan Rose <jrose@digium.com>2012-05-18 14:27:01 +0000
commit6fc8e9928dbb0775bf5affdde5ccc0597fa105e1 (patch)
treedd96d2653d97474bb88f09e0a1016ed5f9b32cbf /channels/sip
parent54268bca4a38e73814dab29dad2bd4e37674b67b (diff)
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
Diffstat (limited to 'channels/sip')
-rw-r--r--channels/sip/dialplan_functions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/sip/dialplan_functions.c b/channels/sip/dialplan_functions.c
index 152f7caa4..fd8b04fb2 100644
--- a/channels/sip/dialplan_functions.c
+++ b/channels/sip/dialplan_functions.c
@@ -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;
}