From: Richard Mudgett Date: Mon, 23 Jan 2012 17:33:34 +0000 (+0000) Subject: Fix sip_cfg.notifycid to be set with the defined enum values. X-Git-Tag: 1.8.10.0-rc1~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fe7fb3772ba23a388ca5d8075a1c45dc100e6458;p=thirdparty%2Fasterisk.git Fix sip_cfg.notifycid to be set with the defined enum values. 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 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@352090 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index b4d09dfd8a..8abcd61019 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -28140,7 +28140,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);