Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Change two instances of fossil_panic() into fossil_fatal(). |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | forum-v2 |
| Files: | files | file ages | folders |
| SHA3-256: |
342bd06b6a9a85f07ef0b3216a48285b |
| User & Date: | drh 2018-08-07 13:20:12.243 |
Context
|
2018-08-07
| ||
| 13:28 | More conversions of fossil_panic() into fossil_fatal(). check-in: 666b0ce6a7 user: drh tags: forum-v2 | |
| 13:20 | Change two instances of fossil_panic() into fossil_fatal(). check-in: 342bd06b6a user: drh tags: forum-v2 | |
| 00:22 | For non-digest subscribers, alerts for new forum posts are now in separate emails with each email having a subject which is the title of the forum thread, and with appropriate Message-Id and In-Reply-To header fields so that email clients can string together the email thread. Digest subscribes still get just the synopsis. check-in: 4d6591736e user: drh tags: forum-v2 | |
Changes
Changes to src/db.c.
| ︙ | ︙ | |||
1716 1717 1718 1719 1720 1721 1722 |
}
rep_not_found:
if( (bFlags & OPEN_OK_NOT_FOUND)==0 ){
#ifdef FOSSIL_ENABLE_JSON
g.json.resultCode = FSL_JSON_E_DB_NOT_FOUND;
#endif
if( nArgUsed==0 ){
| | | | 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 |
}
rep_not_found:
if( (bFlags & OPEN_OK_NOT_FOUND)==0 ){
#ifdef FOSSIL_ENABLE_JSON
g.json.resultCode = FSL_JSON_E_DB_NOT_FOUND;
#endif
if( nArgUsed==0 ){
fossil_fatal("use --repository or -R to specify the repository database");
}else{
fossil_fatal("specify the repository name as a command-line argument");
}
}
}
/*
** Return TRUE if the schema is out-of-date
*/
|
| ︙ | ︙ |