1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Consistent use of #ifdef for SQLITE_HAS_CODEC to avoid confusion.

FossilOrigin-Name: 34a3413a5318050254b246ad859c91c134516a32
This commit is contained in:
shaneh
2010-02-17 17:48:46 +00:00
parent 147e176aff
commit ad9f9f6693
4 changed files with 12 additions and 12 deletions

View File

@@ -150,7 +150,7 @@ static void attachFunc(
aNew->zName = sqlite3DbStrDup(db, zName);
aNew->safety_level = 3;
#if SQLITE_HAS_CODEC
#ifdef SQLITE_HAS_CODEC
if( rc==SQLITE_OK ){
extern int sqlite3CodecAttach(sqlite3*, int, const void*, int);
extern void sqlite3CodecGetKey(sqlite3*, int, void**, int*);