mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-12 04:48:51 +00:00
Merged revisions 157041 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r157041 | russell | 2008-11-14 22:25:57 -0600 (Fri, 14 Nov 2008) | 3 lines 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/branches/1.6.1@157042 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user