]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix sip_cfg.notifycid to be set with the defined enum values.
authorRichard Mudgett <rmudgett@digium.com>
Mon, 23 Jan 2012 17:34:59 +0000 (17:34 +0000)
committerRichard Mudgett <rmudgett@digium.com>
Mon, 23 Jan 2012 17:34:59 +0000 (17:34 +0000)
The invalid value used when notifycid was enabled was benign.  As far as
the code was concerned -1 and 1 are equivalent.

(closes issue ASTERISK-19232)
Reported by: Eike Kuiper
........

Merged revisions 352090 from http://svn.asterisk.org/svn/asterisk/branches/1.8

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

channels/chan_sip.c

index 5a83878f04e9561e948d783ef9226c0372c5287f..94236331c44b4bf8af4a873cb0a6c9fbafeb84e7 100644 (file)
@@ -28872,7 +28872,7 @@ static int reload_config(enum channelreloadreason reason)
                        if (!strcasecmp(v->value, "ignore-context")) {
                                sip_cfg.notifycid = IGNORE_CONTEXT;
                        } else {
-                               sip_cfg.notifycid = ast_true(v->value);
+                               sip_cfg.notifycid = ast_true(v->value) ? ENABLED : DISABLED;
                        }
                } else if (!strcasecmp(v->name, "alwaysauthreject")) {
                        sip_cfg.alwaysauthreject = ast_true(v->value);