diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-08-12 13:54:47 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-08-12 13:54:47 +0200 |
commit | e65a9b0ddd84b88ec6572892ea8d2e8bec4162be (patch) | |
tree | 35195bd658f140248959ca88522c21f0ba76faef /mod/mod-submit.cxx | |
parent | 15aae9d6ccad133defdb4270dbd6d76b7f370063 (diff) |
Adjust to fdstream constructor changes
Diffstat (limited to 'mod/mod-submit.cxx')
-rw-r--r-- | mod/mod-submit.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/mod-submit.cxx b/mod/mod-submit.cxx index a4ee158..7666b55 100644 --- a/mod/mod-submit.cxx +++ b/mod/mod-submit.cxx @@ -358,7 +358,7 @@ handle (request& rq, response& rs) sha256 sha; char buf[8192]; - ofdstream os (af, ios::binary); + ofdstream os (af, fdopen_mode::binary); while (!eof (is)) { |