]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
(closes issue #10760)
authorJoshua Colp <jcolp@digium.com>
Wed, 19 Sep 2007 13:18:22 +0000 (13:18 +0000)
committerJoshua Colp <jcolp@digium.com>
Wed, 19 Sep 2007 13:18:22 +0000 (13:18 +0000)
Reported by: dimas
Patches:
      chan_sip.patch uploaded by dimas (license 88)
Read in subscribecontext option in general to be the default.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@83070 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_sip.c

index d449102519e6aac61378b87b39f0b7ed744962b7..3c61b475fa7f15eccbed3cdeaf25c2b873010122 100644 (file)
@@ -16593,6 +16593,8 @@ static int reload_config(enum channelreloadreason reason)
                /* Create the interface list */
                if (!strcasecmp(v->name, "context")) {
                        ast_copy_string(default_context, v->value, sizeof(default_context));
+               } else if (!strcasecmp(v->name, "subscribecontext")) {
+                       ast_copy_string(default_subscribecontext, v->value, sizeof(default_subscribecontext));
                } else if (!strcasecmp(v->name, "allowguest")) {
                        global_allowguest = ast_true(v->value) ? 1 : 0;
                } else if (!strcasecmp(v->name, "realm")) {