From: Martin Pycko Date: Fri, 14 Nov 2003 17:57:26 +0000 (+0000) Subject: A little oops ... X-Git-Tag: 0.7.0~263 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=265d0a060ccbdb038eea607f300d40e71e0aab13;p=thirdparty%2Fasterisk.git A little oops ... git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1749 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index a3b2778830..34c9d4c5a9 100755 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -6272,11 +6272,11 @@ static int sip_dtmfmode(struct ast_channel *chan, void *data) ast_log(LOG_WARNING, "This application requires the argument: info, inband, rfc2833\n"); return 0; } - if (strcasecmp(mode,"info")) + if (!strcasecmp(mode,"info")) p->dtmfmode = SIP_DTMF_INFO; - else if (strcasecmp(mode,"rfc2833")) + else if (!strcasecmp(mode,"rfc2833")) p->dtmfmode = SIP_DTMF_RFC2833; - else if (strcasecmp(mode,"inband")) + else if (!strcasecmp(mode,"inband")) p->dtmfmode = SIP_DTMF_INBAND; else ast_log(LOG_WARNING, "I don't know about this dtmf mode: %s\n",mode);