From: Russell Bryant Date: Tue, 27 Mar 2007 18:17:47 +0000 (+0000) Subject: Fix the check that ensures that the CHANNEL function's first argument is "rtpqos". X-Git-Tag: 1.4.7.1~515 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a2fc7b9e36b4a7c2bf388c4bc1fd03f193bf32bc;p=thirdparty%2Fasterisk.git Fix the check that ensures that the CHANNEL function's first argument is "rtpqos". Thanks, Corydon. :) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@59262 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index b61052966d..ff95e2d828 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -14147,7 +14147,7 @@ static int acf_channel_read(struct ast_channel *chan, char *funcname, char *prep return 0; } - if (!strcasecmp(args.param, "rtpqos")) + if (strcasecmp(args.param, "rtpqos")) return 0; memset(buf, 0, buflen);