Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix the previous change to cover an extra case. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
19a01ac12ea12a158bffb335e181e7fa |
| User & Date: | danield 2022-04-19 15:47:23.833 |
| Original Comment: | Fix the previous chance to cover an extra case. |
Context
|
2022-04-20
| ||
| 15:03 | Add the new special name start:BRANCH to refer to the first check-in of the branch ... (check-in: c92fb60ba9 user: danield tags: name-start) | |
| 09:38 | Changed zlib crc type from int to unsigned long, as that's the type returned by zlib's crc32() and doing so reportedly resolves the CRC error reported in [forum:7a9097e557 | forum post 7a9097e557]. ... (check-in: 1bf6686e76 user: stephan tags: trunk) | |
|
2022-04-19
| ||
| 15:47 | Fix the previous change to cover an extra case. ... (check-in: 19a01ac12e user: danield tags: trunk) | |
| 12:46 | Relocate a declaration to cope with C89 rules. ... (check-in: 87955d9274 user: danield tags: trunk) | |
Changes
Changes to src/main.c.
| ︙ | ︙ | |||
2013 2014 2015 2016 2017 2018 2019 |
#endif
{
@ <h1>Server Configuration Error</h1>
@ <p>The database schema on the server is out-of-date. Please ask
@ the administrator to run <b>fossil rebuild</b>.</p>
}
}else{
| < > > | | | | > | 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 |
#endif
{
@ <h1>Server Configuration Error</h1>
@ <p>The database schema on the server is out-of-date. Please ask
@ the administrator to run <b>fossil rebuild</b>.</p>
}
}else{
if(0==(CMDFLAG_LDAVG_EXEMPT & pCmd->eCmdFlags)){
load_control();
}
#ifdef FOSSIL_ENABLE_JSON
{
static int jsonOnce = 0;
if( jsonOnce==0 && g.json.isJsonMode!=0 ){
assert(json_is_bootstrapped_early());
json_bootstrap_late();
jsonOnce = 1;
}
}
#endif
if( (pCmd->eCmdFlags & CMDFLAG_RAWCONTENT)==0 ){
cgi_decode_post_parameters();
}
if( g.fCgiTrace ){
fossil_trace("######## Calling %s #########\n", pCmd->zName);
|
| ︙ | ︙ |