]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Oops, this should be case insensitive
authorTilghman Lesher <tilghman@meg.abyt.es>
Mon, 26 Mar 2007 21:45:44 +0000 (21:45 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Mon, 26 Mar 2007 21:45:44 +0000 (21:45 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@59230 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_sip.c

index a9611f35a90a88c75dd150c4346c56b979c7d2c0..086a302c7c1fdcceb5b2dc29cffbd335767f60a1 100644 (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);
        }