summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2008-06-17 19:00:14 +0000
committerRussell Bryant <russell@russellbryant.com>2008-06-17 19:00:14 +0000
commit5aeb6a6cbba7b1e32e5fac2c08773d141c87047e (patch)
tree5362abcda8625b1d258db1bb7b37607bd22eb210 /res
parentbb0dbfa520406270cc8c9ff2f4e72b35c216a296 (diff)
Fix the check against the max supported rate
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@123393 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res')
-rw-r--r--res/res_timing_pthread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_timing_pthread.c b/res/res_timing_pthread.c
index 6b17e9b85..ead2c2d90 100644
--- a/res/res_timing_pthread.c
+++ b/res/res_timing_pthread.c
@@ -149,7 +149,7 @@ static int pthread_timer_set_rate(int handle, unsigned int rate)
return -1;
}
- if (rate > 0 && rate < MAX_RATE) {
+ if (rate > MAX_RATE) {
ast_log(LOG_ERROR, "res_timing_pthread only supports timers at a max rate of %d / sec\n",
MAX_RATE);
errno = EINVAL;