Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix an obsolete comment. No code changes. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
17fbffa2dda371bb679246398846dc3e |
| User & Date: | drh 2013-01-08 15:19:10.711 |
Context
|
2013-01-08
| ||
| 15:35 | Added the "Up and running in 5 minutes" document by Gilles Ganault. check-in: f612e9172c user: drh tags: trunk | |
| 15:19 | Fix an obsolete comment. No code changes. check-in: 17fbffa2dd user: drh tags: trunk | |
| 14:03 | Update SQLite from upstream to fix a potential crash bug if Fossil were compiled with SQLITE_ENABLE_STAT3. check-in: 1a52914b38 user: drh tags: trunk | |
Changes
Changes to src/db.c.
| ︙ | ︙ | |||
20 21 22 23 24 25 26 | ** There are three separate database files that fossil interacts ** with: ** ** (1) The "user" database in ~/.fossil ** ** (2) The "repository" database ** | | | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | ** There are three separate database files that fossil interacts ** with: ** ** (1) The "user" database in ~/.fossil ** ** (2) The "repository" database ** ** (3) A local checkout database named "_FOSSIL_" or ".fslckout" ** and located at the root of the local copy of the source tree. ** */ #include "config.h" #if ! defined(_WIN32) # include <pwd.h> #endif |
| ︙ | ︙ |