Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a pledge() problem with the status command. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
e765f90ee7551d0d652e03fd95a77f80 |
User & Date: | drh 2018-03-26 13:21:55.758 |
Context
2018-03-28
| ||
08:01 | Update openssl version ... (check-in: 531a517b user: jan.nijtmans tags: trunk) | |
2018-03-26
| ||
13:21 | Fix a pledge() problem with the status command. ... (check-in: e765f90e user: drh tags: trunk) | |
01:05 | Harmless comment typo fix. ... (check-in: b948eaea user: drh tags: trunk) | |
Changes
Changes to src/checkin.c.
︙ | ︙ | |||
470 471 472 473 474 475 476 | int showHdr = command==CHANGES && find_option("header", 0, 0); int verboseFlag = command==CHANGES && find_option("verbose", "v", 0); const char *zIgnoreFlag = find_option("ignore", 0, 1); unsigned scanFlags = 0; unsigned flags = 0; int vid, i; | | | 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 | int showHdr = command==CHANGES && find_option("header", 0, 0); int verboseFlag = command==CHANGES && find_option("verbose", "v", 0); const char *zIgnoreFlag = find_option("ignore", 0, 1); unsigned scanFlags = 0; unsigned flags = 0; int vid, i; fossil_pledge("stdio rpath wpath cpath fattr id flock tty chown"); /* Load affirmative flag options. */ for( i=0; i<count(flagDefs); ++i ){ if( (command==CHANGES || !(flagDefs[i].mask & C_CLASSIFY)) && find_option(flagDefs[i].option, 0, 0) ){ flags |= flagDefs[i].mask; } |
︙ | ︙ |