summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2014-08-20 20:41:04 +0000
committerMark Michelson <mmichelson@digium.com>2014-08-20 20:41:04 +0000
commit49f8bd4ad4c139b3260a7317d53c226d72f7bc9d (patch)
treeb52aaa777d928c25a7f19b5d53a3ccea324538d0
parentd0640ad7df7910f05cc9040ec7d3191bbd245969 (diff)
Set the role for inbound subscriptions correctly.
This was causing the AMI show_subscriptions test in the testsuite to fail since all subscriptions were being seen as subscribers instead of notifiers. ........ Merged revisions 421585 from http://svn.asterisk.org/svn/asterisk/branches/13 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@421586 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--res/res_pjsip_pubsub.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/res/res_pjsip_pubsub.c b/res/res_pjsip_pubsub.c
index 90be60d4e..530a3b81b 100644
--- a/res/res_pjsip_pubsub.c
+++ b/res/res_pjsip_pubsub.c
@@ -1209,6 +1209,7 @@ static struct sip_subscription_tree *create_subscription_tree(const struct ast_s
if (!sub_tree) {
return NULL;
}
+ sub_tree->role = AST_SIP_NOTIFIER;
dlg = ast_sip_create_dialog_uas(endpoint, rdata);
if (!dlg) {