aboutsummaryrefslogtreecommitdiff
path: root/mod/mod-submit.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'mod/mod-submit.cxx')
-rw-r--r--mod/mod-submit.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/mod/mod-submit.cxx b/mod/mod-submit.cxx
index 9fa5d82..246dcc9 100644
--- a/mod/mod-submit.cxx
+++ b/mod/mod-submit.cxx
@@ -592,9 +592,11 @@ handle (request& rq, response& rs)
auto add = [&rvs] (string n, string v)
{
- manifest_name_value nv {move (n), move (v),
- 0 /* name_line */, 0 /* name_column */,
- 0 /* value_line */, 0 /* value_column */};
+ manifest_name_value nv {
+ move (n), move (v),
+ 0 /* name_line */, 0 /* name_column */,
+ 0 /* value_line */, 0 /* value_column */,
+ 0 /* start_pos */, 0 /* colon_pos */, 0 /* end_pos */};
rvs.emplace_back (move (nv));
};