From 17920eef790a0141cd5a4da98c23229a6f0b75a9 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Wed, 15 Feb 2006 21:20:35 +0000 Subject: [PATCH] (ofx_proc_transaction_cb): Applied patch for a bad reference to entry->date. --- ofx.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;