From: Michael Jerris Date: Tue, 4 Nov 2008 15:41:25 +0000 (+0000) Subject: make hash case sensitive so we can have same file format both upper and lower case... X-Git-Tag: v1.0.2~642 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=807bef81edbc27f77eaec5b03dd46d0fb604491f;p=thirdparty%2Ffreeswitch.git make hash case sensitive so we can have same file format both upper and lower case (.gsm vs .GSM) git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10238 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/switch_core_hash.c b/src/switch_core_hash.c index ba908da95d..8f4b353985 100644 --- a/src/switch_core_hash.c +++ b/src/switch_core_hash.c @@ -48,7 +48,7 @@ SWITCH_DECLARE(switch_status_t) switch_core_hash_init(switch_hash_t **hash, swit newhash = switch_core_alloc(pool, sizeof(*newhash)); switch_assert(newhash); - sqlite3HashInit(&newhash->table, SQLITE_HASH_STRING, 1); + sqlite3HashInit(&newhash->table, SQLITE_HASH_BINARY, 1); *hash = newhash; return SWITCH_STATUS_SUCCESS;