[Freeswitch-svn] [commit] r10238 - freeswitch/trunk/src
Freeswitch SVN
mikej at freeswitch.org
Tue Nov 4 10:41:26 EST 2008
Author: mikej
Date: Tue Nov 4 10:41:25 2008
New Revision: 10238
Modified:
freeswitch/trunk/src/switch_core_hash.c
Log:
make hash case sensitive so we can have same file format both upper and lower case (.gsm vs .GSM)
Modified: freeswitch/trunk/src/switch_core_hash.c
==============================================================================
--- freeswitch/trunk/src/switch_core_hash.c (original)
+++ freeswitch/trunk/src/switch_core_hash.c Tue Nov 4 10:41:25 2008
@@ -48,7 +48,7 @@
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;
More information about the Freeswitch-svn
mailing list