From ab2b24d6eea9cd92efbf0f536044624554e9e021 Mon Sep 17 00:00:00 2001 From: Russell Bryant <russell@russellbryant.com> Date: Sat, 15 Nov 2008 04:08:42 +0000 Subject: [PATCH] Use the new case insensitive hash function for console interfaces. The comparison function is case insensitive. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@157039 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/chan_console.c b/channels/chan_console.c index e895cf10db..b9f5c5471b 100644 --- a/channels/chan_console.c +++ b/channels/chan_console.c @@ -1426,7 +1426,7 @@ static int pvt_hash_cb(const void *obj, const int flags) { const struct console_pvt *pvt = obj; - return ast_str_hash(pvt->name); + return ast_str_case_hash(pvt->name); } static int pvt_cmp_cb(void *obj, void *arg, void *data, int flags) -- GitLab