Oops, this should be case insensitive

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@59230 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.4
Tilghman Lesher 19 years ago
parent 1f08db56c5
commit 0220349ca4

@ -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);
}

Loading…
Cancel
Save