[asterisk-commits] tilghman: branch 1.4 r59230 - /branches/1.4/channels/chan_sip.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Mon Mar 26 14:45:45 MST 2007


Author: tilghman
Date: Mon Mar 26 16:45:44 2007
New Revision: 59230

URL: http://svn.digium.com/view/asterisk?view=rev&rev=59230
Log:
Oops, this should be case insensitive

Modified:
    branches/1.4/channels/chan_sip.c

Modified: branches/1.4/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_sip.c?view=diff&rev=59230&r1=59229&r2=59230
==============================================================================
--- branches/1.4/channels/chan_sip.c (original)
+++ branches/1.4/channels/chan_sip.c Mon Mar 26 16:45:44 2007
@@ -14148,7 +14148,7 @@
 
 	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);
 	}
 



More information about the asterisk-commits mailing list