# HG changeset patch # User Chris Cannam # Date 1476109904 -3600 # Node ID d45cfa25aaad8d1bc35ea49ee0d494512d9a889f # Parent 7bfc07576830aa05f75376cb26e2c79bd93fe7da Ensure code is at least set, but just to 0 at the mo diff -r 7bfc07576830 -r d45cfa25aaad capnproto/VampnProto.h --- a/capnproto/VampnProto.h Mon Oct 10 15:03:47 2016 +0100 +++ b/capnproto/VampnProto.h Mon Oct 10 15:31:44 2016 +0100 @@ -830,8 +830,7 @@ type = "invalid"; } - //!!! + code - + e.setCode(0); e.setMessage(std::string("error in ") + type + " request: " + errorText); } diff -r 7bfc07576830 -r d45cfa25aaad json/VampJson.h --- a/json/VampJson.h Mon Oct 10 15:03:47 2016 +0100 +++ b/json/VampJson.h Mon Oct 10 15:31:44 2016 +0100 @@ -1233,7 +1233,7 @@ else type = "invalid"; json11::Json::object eo; - //!!! + need code + eo["code"] = 0; eo["message"] = std::string("error in ") + type + " request: " + errorText;