Fossil SCM
Fix invokation of rebuild_db() from the src/json.c which was overlooked in the previous check-in.
Commit
54ebad01169cc1dd5469581d5817e59820c6258ae2c8e0a60c7c91adac86917a
Parent
298ccff06c487d0…
1 file changed
+1
-1
+1
-1
| --- src/json.c | ||
| +++ src/json.c | ||
| @@ -2185,11 +2185,11 @@ | ||
| 2185 | 2185 | it's sqlite3, so it'll fail gracefully). |
| 2186 | 2186 | */ |
| 2187 | 2187 | db_close(1); |
| 2188 | 2188 | db_open_repository(g.zRepositoryName); |
| 2189 | 2189 | db_begin_transaction(); |
| 2190 | - rebuild_db(0, 0, 0); | |
| 2190 | + rebuild_db(0, 0); | |
| 2191 | 2191 | db_end_transaction(0); |
| 2192 | 2192 | return NULL; |
| 2193 | 2193 | } |
| 2194 | 2194 | } |
| 2195 | 2195 | |
| 2196 | 2196 |
| --- src/json.c | |
| +++ src/json.c | |
| @@ -2185,11 +2185,11 @@ | |
| 2185 | it's sqlite3, so it'll fail gracefully). |
| 2186 | */ |
| 2187 | db_close(1); |
| 2188 | db_open_repository(g.zRepositoryName); |
| 2189 | db_begin_transaction(); |
| 2190 | rebuild_db(0, 0, 0); |
| 2191 | db_end_transaction(0); |
| 2192 | return NULL; |
| 2193 | } |
| 2194 | } |
| 2195 | |
| 2196 |
| --- src/json.c | |
| +++ src/json.c | |
| @@ -2185,11 +2185,11 @@ | |
| 2185 | it's sqlite3, so it'll fail gracefully). |
| 2186 | */ |
| 2187 | db_close(1); |
| 2188 | db_open_repository(g.zRepositoryName); |
| 2189 | db_begin_transaction(); |
| 2190 | rebuild_db(0, 0); |
| 2191 | db_end_transaction(0); |
| 2192 | return NULL; |
| 2193 | } |
| 2194 | } |
| 2195 | |
| 2196 |