aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2005-01-08 18:42:28 +0000
committerdrh <drh@noemail.net>2005-01-08 18:42:28 +0000
commit49766d6cd022f75d8b7563a7c4fbf79a1d5a61d6 (patch)
tree298d12b45cad2b31271e14de055e7c4e5af77c66 /src/main.c
parent268283bc7fe89e9ee4d0a4451550883f798a3175 (diff)
downloadsqlite-49766d6cd022f75d8b7563a7c4fbf79a1d5a61d6.tar.gz
sqlite-49766d6cd022f75d8b7563a7c4fbf79a1d5a61d6.zip
Tcl interface does as sqlite3 or as sqlite. A compile-time option allows
duel linking. Also fix a bug in the pragma change from earlier today. (CVS 2186) FossilOrigin-Name: ad10953799f3aa15fde41cbbd5911a3b56c326ec
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/main.c b/src/main.c
index 9a9b96e08..386dcbaf9 100644
--- a/src/main.c
+++ b/src/main.c
@@ -14,7 +14,7 @@
** other files are for internal use by SQLite and should not be
** accessed by users of the library.
**
-** $Id: main.c,v 1.268 2004/11/22 19:12:20 drh Exp $
+** $Id: main.c,v 1.269 2005/01/08 18:42:28 drh Exp $
*/
#include "sqliteInt.h"
#include "os.h"
@@ -843,9 +843,6 @@ int sqlite3BtreeFactory(
btree_flags |= BTREE_OMIT_JOURNAL;
}
if( zFilename==0 ){
-#ifndef TEMP_STORE
-# define TEMP_STORE 1
-#endif
#if TEMP_STORE==0
/* Do nothing */
#endif