From b57c038dadcec9c77aac62cb46d08900ae3ec633 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Wed, 15 Feb 2006 21:20:35 +0000 Subject: (ofx_proc_transaction_cb): Applied patch for a bad reference to entry->date. --- ofx.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ofx.cc') diff --git a/ofx.cc b/ofx.cc index 5eed5c64..7aa95256 100644 --- a/ofx.cc +++ b/ofx.cc @@ -93,9 +93,9 @@ int ofx_proc_transaction_cb(struct OfxTransactionData data, << " from " << *xact->account); if (data.date_initiated_valid) - entry->date = data.date_initiated; + entry->_date = data.date_initiated; else if (data.date_posted_valid) - entry->date = data.date_posted; + entry->_date = data.date_posted; if (data.check_number_valid) entry->code = data.check_number; -- cgit v1.2.3