mirror of
https://github.com/asterisk/asterisk.git
synced 2026-06-29 03:41:34 -07: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:
+1
-1
@@ -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