aboutsummaryrefslogtreecommitdiffstats
path: root/main/taskprocessor.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-11-15 04:25:57 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-11-15 04:25:57 +0000
commit7927af69d97bd4e51f24c19eeec5e4ce5e71884b (patch)
tree65eb98c9ee1c98c37fd15b6e592c90a08af02fcd /main/taskprocessor.c
parentccf913553409a016d71804bf032d25315269ae85 (diff)
Fix a few more places where the case insensitive hash should be used since
the comparison is case insensitive. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@157041 f38db490-d61c-443f-a65b-d21fe96a405b
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 */