summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-04-18 19:48:02 +0200
committerRoland Reichwein <mail@reichwein.it>2020-04-18 19:48:02 +0200
commitb8f80db4ec3a5e586903834f29ec50a265c0c1fa (patch)
tree7c6a7551e02e249c08172c99e0fc9de7ceebfdfd
parent97ced11f63f43310180c4b507ed95e5360e4723b (diff)
Old boost doesn't support close
-rw-r--r--plugins/cgi/cgi.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/cgi/cgi.cpp b/plugins/cgi/cgi.cpp
index 561e6ad..f5147c1 100644
--- a/plugins/cgi/cgi.cpp
+++ b/plugins/cgi/cgi.cpp
@@ -181,7 +181,7 @@ namespace {
bp::child child(filename.string(), env, (bp::std_out & bp::std_err) > is_out, bp::std_in < is_in);
is_in << context.GetRequestParam("body");
- is_in.close();
+ //is_in.close();
std::string output;
std::string line;