tighten up media bug code

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7217 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale
2008-01-14 19:20:59 +00:00
parent b9b66953ef
commit 82d5e9c9fb
4 changed files with 76 additions and 59 deletions

View File

@@ -411,7 +411,12 @@ static void launch_threads(void)
source->channels = (uint8_t)tmp;
}
} else if (!strcasecmp(var, "interval")) {
source->interval = atoi(val);
int tmp = atoi(val);
if (tmp >= 10) {
source->interval = tmp;
} else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Can't set interval to less than 10\n");
}
} else if (!strcasecmp(var, "timer-name")) {
source->timer_name = switch_core_strdup(source->pool, val);
}