mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-22 20:56:39 +00:00
Oops, this should be case insensitive
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@59230 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -14148,7 +14148,7 @@ static int acf_rtpqos_read(struct ast_channel *chan, char *funcname, char *prepa
|
||||
|
||||
if (strcasecmp(args.type, "AUDIO") == 0) {
|
||||
all = ast_rtp_get_quality(p->rtp, &qos);
|
||||
} else if (strcmp(args.type, "VIDEO") == 0) {
|
||||
} else if (strcasecmp(args.type, "VIDEO") == 0) {
|
||||
all = ast_rtp_get_quality(p->vrtp, &qos);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user