diff options
author | June McEnroe <june@causal.agency> | 2020-01-11 00:07:37 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-01-11 00:07:37 -0500 |
commit | cbfce1fe0e79f883e9ed03be5cc9203cf93db692 (patch) | |
tree | d2ee7fdcd190fead01665432b8f5941577f8b1c5 /scoop.c | |
parent | Request the causal.agency/passive capability (diff) | |
download | litterbox-cbfce1fe0e79f883e9ed03be5cc9203cf93db692.tar.gz litterbox-cbfce1fe0e79f883e9ed03be5cc9203cf93db692.zip |
Open database readwrite in scoop
So that PRAGMA optimize; can actually do its thing, potentially.
Diffstat (limited to '')
-rw-r--r-- | scoop.c | 2 |
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"); } |