diff options
author | June McEnroe <june@causal.agency> | 2021-09-22 21:12:53 +0000 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-09-22 21:13:12 +0000 |
commit | bd4afa842d5893a54ba9525bb7c9a2c691ec6325 (patch) | |
tree | 35eca16111555a9e0b1c53fd0fd1fb37f3669cd3 | |
parent | Support HTTP PUT in up (diff) | |
download | src-bd4afa842d5893a54ba9525bb7c9a2c691ec6325.tar.gz src-bd4afa842d5893a54ba9525bb7c9a2c691ec6325.zip |
Call sandbox in CGI mode
Otherwise upload won't actually work.
-rw-r--r-- | www/temp.causal.agency/up.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/www/temp.causal.agency/up.c b/www/temp.causal.agency/up.c index 75836015..ba6c2bcd 100644 --- a/www/temp.causal.agency/up.c +++ b/www/temp.causal.agency/up.c @@ -169,6 +169,7 @@ int main(void) { struct kreq req; enum kcgi_err error = khttp_parse(&req, &Key, 1, &page, 1, 0); if (error) errx(EX_PROTOCOL, "khttp_parse: %s", kcgi_strerror(error)); + sandbox(); error = handle(&req); if (error) errx(EX_PROTOCOL, "%s", kcgi_strerror(error)); khttp_free(&req); |