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:
Tilghman Lesher
2007-03-26 21:45:44 +00:00
parent 1f08db56c5
commit 0220349ca4

View File

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