mirror of
https://github.com/asterisk/asterisk.git
synced 2026-06-18 05:25:16 +00:00
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:
+1
-1
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user