Repository: trafficserver Updated Branches: refs/heads/master fe219a131 -> 45eeaec10
TS-3408: fix typo that mysteriously compiled Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/45eeaec1 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/45eeaec1 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/45eeaec1 Branch: refs/heads/master Commit: 45eeaec109220e34395470cad0111d71c407d5a6 Parents: fe219a1 Author: James Peach <[email protected]> Authored: Mon Mar 9 20:58:42 2015 -0700 Committer: James Peach <[email protected]> Committed: Mon Mar 9 20:58:42 2015 -0700 ---------------------------------------------------------------------- mgmt/api/TSControlMain.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/45eeaec1/mgmt/api/TSControlMain.cc ---------------------------------------------------------------------- diff --git a/mgmt/api/TSControlMain.cc b/mgmt/api/TSControlMain.cc index 866e663..0db4e05 100644 --- a/mgmt/api/TSControlMain.cc +++ b/mgmt/api/TSControlMain.cc @@ -1009,7 +1009,7 @@ send_record_describe(const RecRecord * rec, void * ptr) { MgmtMarshallString rec_name = const_cast<char *>(rec->name); MgmtMarshallData rec_value = { NULL, 0 }; - MgmtMarshallData rec_default { NULL, 0 }; + MgmtMarshallData rec_default = { NULL, 0 }; MgmtMarshallInt rec_type = rec->data_type; MgmtMarshallInt rec_class = rec->rec_type; MgmtMarshallInt rec_version = rec->version;
