summaryrefslogtreecommitdiff
path: root/main/taskprocessor.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2008-11-15 04:25:57 +0000
committerRussell Bryant <russell@russellbryant.com>2008-11-15 04:25:57 +0000
commit1148e648b863a5237d0c7b9cd9b6d332559c35c9 (patch)
tree65eb98c9ee1c98c37fd15b6e592c90a08af02fcd /main/taskprocessor.c
parentab2b24d6eea9cd92efbf0f536044624554e9e021 (diff)
Fix a few more places where the case insensitive hash should be used since
the comparison is case insensitive. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@157041 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/taskprocessor.c')
-rw-r--r--main/taskprocessor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/taskprocessor.c b/main/taskprocessor.c
index d8287257e..6fad190f2 100644
--- a/main/taskprocessor.c
+++ b/main/taskprocessor.c
@@ -331,7 +331,7 @@ static int tps_hash_cb(const void *obj, const int flags)
{
const struct ast_taskprocessor *tps = obj;
- return ast_str_hash(tps->name);
+ return ast_str_case_hash(tps->name);
}
/* compare callback for astobj2 */