diff options
| -rw-r--r-- | data.c | 8 |
1 files changed, 6 insertions, 2 deletions
| @@ -79,11 +79,15 @@ int srv_open(char *basedir) | |||
| 79 | if (error != NULL) | 79 | if (error != NULL) |
| 80 | srv_log(error); | 80 | srv_log(error); |
| 81 | 81 | ||
| 82 | /* disabled temporarily; messages can't be sent */ | ||
| 83 | #if 0 | ||
| 82 | #ifdef __OpenBSD__ | 84 | #ifdef __OpenBSD__ |
| 83 | srv_debug(2, xs_fmt("Calling unveil()")); | 85 | srv_debug(2, xs_fmt("Calling unveil()")); |
| 84 | unveil(basedir, "rwc"); | 86 | unveil(basedir, "rwc"); |
| 85 | unveil(NULL, NULL); | 87 | unveil("/usr/sbin", "x"); |
| 88 | unveil(NULL, NULL); | ||
| 86 | #endif /* __OpenBSD__ */ | 89 | #endif /* __OpenBSD__ */ |
| 90 | #endif | ||
| 87 | 91 | ||
| 88 | return ret; | 92 | return ret; |
| 89 | } | 93 | } |