]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
make hash case sensitive so we can have same file format both upper and lower case...
authorMichael Jerris <mike@jerris.com>
Tue, 4 Nov 2008 15:41:25 +0000 (15:41 +0000)
committerMichael Jerris <mike@jerris.com>
Tue, 4 Nov 2008 15:41:25 +0000 (15:41 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10238 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/switch_core_hash.c

index ba908da95d31ab9faa66dde46af3af9458ab08a5..8f4b3539852d817165268ef0e62bad7db2ae24ed 100644 (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;