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
This commit is contained in:
Russell Bryant
2008-11-15 04:25:57 +00:00
parent ab2b24d6ee
commit 1148e648b8
3 changed files with 6 additions and 4 deletions

View File

@@ -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 */