]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix regression caused by missing ! char in commit: 4eb5b388
authorAnthony Minessale <anthm@freeswitch.org>
Fri, 7 Nov 2014 23:11:40 +0000 (17:11 -0600)
committerAnthony Minessale <anthm@freeswitch.org>
Fri, 7 Nov 2014 23:11:47 +0000 (17:11 -0600)
src/switch_core_media.c

index 81b22fa38191006927715796de7582f1dce93f15..b5a039830812819b4df8ed4d8e17254f6bda5b39 100644 (file)
@@ -235,7 +235,7 @@ SWITCH_DECLARE(int) switch_core_media_crypto_keylen(switch_rtp_crypto_key_type_t
 static int get_channels(const char *name, int dft)
 {
 
-       if (!zstr(name) && switch_true(switch_core_get_variable("NDLB_broken_opus_sdp")) && !strcasecmp(name, "opus")) {
+       if (!zstr(name) && !switch_true(switch_core_get_variable("NDLB_broken_opus_sdp")) && !strcasecmp(name, "opus")) {
                return 2; /* IKR???*/
        }