summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-01-11 00:07:37 -0500
committerJune McEnroe <june@causal.agency>2020-01-11 00:07:37 -0500
commitcbfce1fe0e79f883e9ed03be5cc9203cf93db692 (patch)
treed2ee7fdcd190fead01665432b8f5941577f8b1c5
parentRequest the causal.agency/passive capability (diff)
downloadlitterbox-cbfce1fe0e79f883e9ed03be5cc9203cf93db692.tar.gz
litterbox-cbfce1fe0e79f883e9ed03be5cc9203cf93db692.zip
Open database readwrite in scoop
So that PRAGMA optimize; can actually do its thing, potentially.
-rw-r--r--scoop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scoop.c b/scoop.c
index ad7b172..b466c58 100644
--- a/scoop.c
+++ b/scoop.c
@@ -379,7 +379,7 @@ int main(int argc, char *argv[]) {
 		close(rw[1]);
 	}
 
-	dbFind(path, SQLITE_OPEN_READONLY);
+	dbFind(path, SQLITE_OPEN_READWRITE);
 	if (dbVersion() != DatabaseVersion) {
 		errx(EX_CONFIG, "database out of date; migrate with litterbox -m");
 	}