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
This commit is contained in:
Russell Bryant
2007-03-27 18:17:47 +00:00
parent bd5967ea0c
commit a2fc7b9e36
+1 -1
View File
@@ -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);