Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Error message typo fix. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
5b6be647600ab86b340ae4f88d1d14be |
| User & Date: | stephan 2019-06-14 00:24:04.169 |
Context
|
2019-06-14
| ||
| 19:16 | Per forum discussion: when the calculated timestamp of a to-be-touched file is 0, emit a warning and do not set the timestamp. As-yet-uncommitted merges can cause mtime_of_manifest_file() to calculate a time of zero: https://fossil-scm.org/forum/forumpost/6e49ee3725 check-in: 29f450a532 user: stephan tags: trunk | |
| 00:24 | Error message typo fix. check-in: 5b6be64760 user: stephan tags: trunk | |
|
2019-06-13
| ||
| 21:49 | It turns out that fossil globally consumes the --quiet flag: touch now accounts for that. check-in: 519af48c8c user: stephan tags: trunk | |
Changes
Changes to src/file.c.
| ︙ | ︙ | |||
1993 1994 1995 1996 1997 1998 1999 |
manifest's timestamp*/
assert(vid>0);
nowTime = db_int64(-1,
"SELECT CAST(strftime('%%s',"
"(SELECT mtime FROM event WHERE objid=%d)"
") AS INTEGER)", vid);
if(nowTime<0){
| | | 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 |
manifest's timestamp*/
assert(vid>0);
nowTime = db_int64(-1,
"SELECT CAST(strftime('%%s',"
"(SELECT mtime FROM event WHERE objid=%d)"
") AS INTEGER)", vid);
if(nowTime<0){
fossil_fatal("Could not determine checkout version's time!");
}
}else{ /* --checkin */
assert(0 == nowTime);
}
if((pGlob && pGlob->nPattern>0) || g.argc<3){
/*
** We have either (1) globs or (2) no trailing filenames. If there
|
| ︙ | ︙ |