From 3ca06e1ea7fd073dd4b81704d481148b628a7688 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Fri, 3 Jan 2014 23:45:35 +0500 Subject: [PATCH] FS-6073 --resolve --- src/switch_core_media.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/switch_core_media.c b/src/switch_core_media.c index d77e430b83..c7fec519ac 100644 --- a/src/switch_core_media.c +++ b/src/switch_core_media.c @@ -4899,14 +4899,14 @@ SWITCH_DECLARE(switch_status_t) switch_core_media_activate_rtp(switch_core_sessi } } - if ((val = switch_channel_get_variable(session->channel, "params->rtp_timeout_sec"))) { + if ((val = switch_channel_get_variable(session->channel, "rtp_timeout_sec"))) { int v = atoi(val); if (v >= 0) { smh->mparams->rtp_timeout_sec = v; } } - if ((val = switch_channel_get_variable(session->channel, "params->rtp_hold_timeout_sec"))) { + if ((val = switch_channel_get_variable(session->channel, "rtp_hold_timeout_sec"))) { int v = atoi(val); if (v >= 0) { smh->mparams->rtp_hold_timeout_sec = v;