From b70c9b6843e15ee5764b8457acea930af0d2b285 Mon Sep 17 00:00:00 2001 From: deva Date: Fri, 14 Sep 2007 12:25:54 +0000 Subject: Commits are now committed to the database. --- server/src/xmlparser.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'server/src/xmlparser.cc') diff --git a/server/src/xmlparser.cc b/server/src/xmlparser.cc index 7efdc83..d4a6bd8 100644 --- a/server/src/xmlparser.cc +++ b/server/src/xmlparser.cc @@ -82,10 +82,10 @@ void start_hndl(void *p, const char *el, const char **attr) } if(name == "field") { - CommitValue v; - v.name = attributes["name"]; - v.value = attributes["value"]; - transaction->commits.back().values.push_back(v); + Field f; + f.name = attributes["name"]; + f.value = attributes["value"]; + transaction->commits.back().fields.push_back(f); } } -- cgit v1.2.3