File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -94,15 +94,15 @@ void sqlcipher_activate() {
94
94
sqlite3_mutex_enter (sqlite3MutexAlloc (SQLITE_MUTEX_STATIC_MASTER ));
95
95
p = sqlcipher_malloc (sizeof (sqlcipher_provider ));
96
96
{
97
- #if defined (SQLCIPHER_CRYPTO_OPENSSL ) && !defined ( SQLCIPHER_CRYPTO_CC )
98
- extern int sqlcipher_openssl_setup (sqlcipher_provider * p );
99
- sqlcipher_openssl_setup (p );
97
+ #if defined (SQLCIPHER_CRYPTO_CC )
98
+ extern int sqlcipher_cc_setup (sqlcipher_provider * p );
99
+ sqlcipher_cc_setup (p );
100
100
#elif SQLCIPHER_CRYPTO_LIBTOMCRYPT
101
101
extern int sqlcipher_ltc_setup (sqlcipher_provider * p );
102
102
sqlcipher_ltc_setup (p );
103
- #elif SQLCIPHER_CRYPTO_CC
104
- extern int sqlcipher_cc_setup (sqlcipher_provider * p );
105
- sqlcipher_cc_setup (p );
103
+ #elif SQLCIPHER_CRYPTO_OPENSSL
104
+ extern int sqlcipher_openssl_setup (sqlcipher_provider * p );
105
+ sqlcipher_openssl_setup (p );
106
106
#else
107
107
#error "NO DEFAULT SQLCIPHER CRYPTO PROVIDER DEFINED"
108
108
#endif
You can’t perform that action at this time.
0 commit comments