Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Use freopen() rather than assigning to "stdin" in althttpd.c. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
229fda6dfb2cd9b1224de1422fa259a2 |
User & Date: | drh 2019-05-02 19:03:44.081 |
Context
2019-05-08
| ||
16:53 | Clarify the ON CONFLICT clause documentation to make clear that FK violations always work as ABORT or ROLLBACK, never FAIL, IGNORE, or REPLACE. (check-in: 90a2cca5d0 user: drh tags: trunk) | |
2019-05-02
| ||
19:03 | Use freopen() rather than assigning to "stdin" in althttpd.c. (check-in: 229fda6dfb user: drh tags: trunk) | |
2019-04-29
| ||
18:45 | Add documentation for the ".recover" command to the shell tool page. (check-in: 51202caa59 user: dan tags: trunk) | |
Changes
Changes to misc/althttpd.c.
︙ | ︙ | |||
2281 2282 2283 2284 2285 2286 2287 | useChrootJail = 0; } }else if( strcmp(z, "-debug")==0 ){ if( atoi(zArg) ){ useTimeout = 0; } }else if( strcmp(z, "-input")==0 ){ | < | | 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 | useChrootJail = 0; } }else if( strcmp(z, "-debug")==0 ){ if( atoi(zArg) ){ useTimeout = 0; } }else if( strcmp(z, "-input")==0 ){ freopen(zArg, "rb", stdin); if( stdin==0 ){ Malfunction(501, /* LOG: cannot open --input file */ "cannot open --input file \"%s\"\n", zArg); } }else if( strcmp(z, "-datetest")==0 ){ TestParseRfc822Date(); printf("Ok\n"); |
︙ | ︙ |