]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix trivial compiler error
authorJeff Lenk <jeff@jefflenk.com>
Tue, 2 Jul 2013 17:41:15 +0000 (12:41 -0500)
committerJeff Lenk <jeff@jefflenk.com>
Tue, 2 Jul 2013 17:41:15 +0000 (12:41 -0500)
src/switch_core_media.c

index 4b926ed81073523fb15b75cc8ef1d46ea9d490e5..a52c9e08e7cb5e47bf3e94d6d2374ddfe04c453f 100644 (file)
@@ -2788,7 +2788,7 @@ SWITCH_DECLARE(uint8_t) switch_core_media_negotiate_sdp(switch_core_session_t *s
                                        if ((zstr(map->rm_encoding) || (smh->mparams->ndlb & SM_NDLB_ALLOW_BAD_IANANAME)) && map->rm_pt < 96) {
                                                match = (map->rm_pt == imp->ianacode) ? 1 : 0;
                                        } else {
-                                               match = (!strcasecmp(rm_encoding, imp->iananame) && (map->rm_rate == codec_rate)) ? 1 : 0
+                                               match = (!strcasecmp(rm_encoding, imp->iananame) && (map->rm_rate == codec_rate)) ? 1 : 0;
                                        }
 
                                        if (match && bit_rate && map_bit_rate && map_bit_rate != bit_rate && strcasecmp(map->rm_encoding, "ilbc") &&