Differences From Artifact [ea14bc3e5b]:
- File src/add.c — part of check-in [feed6232af] at 2011-12-22 13:57:32 on branch trunk — Fix the "add" command so that it will undo a prior "rm". Ticket [34707fabfd8a5d] (user: drh size: 16971) [more...]
To Artifact [18bae95c6c]:
- File src/add.c — part of check-in [f9a200f01b] at 2012-02-04 14:44:10 on branch trunk — Change the alternative name of the _FOSSIL_ checkout database to ".fslckout" since the prior alternative name is offensive in some locales. The prior name is still supported for backwards compatibility, but is now deprecated and undocumented and will eventually disappear completely. (user: drh size: 17253) [more...]
| ︙ | |||
42 43 44 45 46 47 48 49 50 51 52 53 54 55 | 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | + + + + + + + + |
** its associated journals
*/
static const char *azName[] = {
"_FOSSIL_",
"_FOSSIL_-journal",
"_FOSSIL_-wal",
"_FOSSIL_-shm",
".fslckout",
".fslckout-journal",
".fslckout-wal",
".fslckout-shm",
/* The use of ".fos" as the name of the checkout database is
** deprecated. Use ".fslckout" instead. At some point, the following
** entries should be removed. 2012-02-04 */
".fos",
".fos-journal",
".fos-wal",
".fos-shm",
};
/* Names of auxiliary files generated by SQLite when the "manifest"
|
| ︙ |