Changeset 6f076e7 in code
- Timestamp:
- Sep 21, 2016, 8:45:32 PM (9 years ago)
- Branches:
- master
- Children:
- 36f8e7c, 5ea93bc
- Parents:
- 67f3e60 (diff), 411aa63 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Mike Belopuhov <mbelop@…> (09/21/16 20:45:32)
- git-committer:
- GitHub <noreply@…> (09/21/16 20:45:32)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
icbd.c
r67f3e60 r6f076e7 504 504 } 505 505 506 if (dodns) { 507 if (pledge("stdio inet rpath dns", NULL) == -1) { 508 syslog(LOG_ERR, "pledge"); 509 exit(EX_NOPERM); 510 } 511 } else { 512 if (pledge("stdio inet rpath", NULL) == -1) { 513 syslog(LOG_ERR, "pledge"); 514 exit(EX_NOPERM); 515 } 516 } 517 506 518 (void)setproctitle("icbd"); 507 519 } -
logger.c
r67f3e60 r6f076e7 119 119 } 120 120 121 if (pledge("stdio cpath wpath", NULL) == -1) { 122 syslog(LOG_ERR, "%s: pledge", __func__); 123 exit(EX_NOPERM); 124 } 125 121 126 event_init(); 122 127
Note:
See TracChangeset
for help on using the changeset viewer.