Differences From Artifact [5d402b3dac]:
- File src/manifest.c — part of check-in [e08f9c0423] at 2018-06-11 20:36:38 on branch trunk — Disable the time_fudge corrections for check-ins that have mtimes that are modified using a tag. (user: drh size: 78593)
To Artifact [5294ac6bb4]:
- File src/manifest.c — part of check-in [3f5ab71744] at 2018-07-15 19:56:20 on branch trunk — Clarify the difference between fossil_fatal() and fossil_panic(). The fossil_panic() interface puts a message on the error log when generating webpages. Otherwise the two routines are identical. Convert some fossil_fatal() calls into fossil_panic() where appropriate. The goal here is to limit messages on the error log to things that require attention from the system administrator, or represent bugs. (user: drh size: 78593) [more...]
| ︙ | ︙ | |||
1057 1058 1059 1060 1061 1062 1063 |
if( !throwError ){
db_multi_exec(
"INSERT OR IGNORE INTO orphan(rid, baseline) VALUES(%d,%d)",
p->rid, rid
);
return 1;
}
| | | 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 |
if( !throwError ){
db_multi_exec(
"INSERT OR IGNORE INTO orphan(rid, baseline) VALUES(%d,%d)",
p->rid, rid
);
return 1;
}
fossil_panic("cannot access baseline manifest %S", p->zBaseline);
}
}
return 0;
}
/*
** Rewind a manifest-file iterator back to the beginning of the manifest.
|
| ︙ | ︙ |