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
This commit is contained in:
Michael Jerris 2008-11-04 15:41:25 +00:00
parent 53b9d9c86f
commit 807bef81ed
1 changed files with 1 additions and 1 deletions

View File

@ -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;