summaryrefslogtreecommitdiff
path: root/ofx.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2006-02-15 21:20:35 +0000
committerJohn Wiegley <johnw@newartisans.com>2008-04-13 02:41:22 -0400
commitb57c038dadcec9c77aac62cb46d08900ae3ec633 (patch)
treebc6aeca07d3bf91e0b57341e25df1900df87f423 /ofx.cc
parent7716630a425437abc0940d547e5a751134f391fd (diff)
downloadfork-ledger-b57c038dadcec9c77aac62cb46d08900ae3ec633.tar.gz
fork-ledger-b57c038dadcec9c77aac62cb46d08900ae3ec633.tar.bz2
fork-ledger-b57c038dadcec9c77aac62cb46d08900ae3ec633.zip
(ofx_proc_transaction_cb): Applied patch for a bad reference to
entry->date.
Diffstat (limited to 'ofx.cc')
-rw-r--r--ofx.cc4
1 files 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;