mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-14 00:00:44 +00:00
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:
parent
53b9d9c86f
commit
807bef81ed
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user