From a6a055cabbfcd91ebf6fbf608cca3149b596cd7c Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Mon, 4 Feb 2013 15:50:51 -0600 Subject: [PATCH] fix or and thing --- src/switch_core_media.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/switch_core_media.c b/src/switch_core_media.c index ff94e4ae9f..8a64455682 100644 --- a/src/switch_core_media.c +++ b/src/switch_core_media.c @@ -5013,7 +5013,7 @@ SWITCH_DECLARE(void) switch_core_media_gen_local_sdp(switch_core_session_t *sess this_ptime = imp->microseconds_per_packet / 1000; - if (!strcasecmp(imp->iananame, "ilbc") && !strcasecmp(imp->iananame, "isac")) { + if (!strcasecmp(imp->iananame, "ilbc") || !strcasecmp(imp->iananame, "isac")) { this_ptime = 20; }