summaryrefslogtreecommitdiff
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
commit17920eef790a0141cd5a4da98c23229a6f0b75a9 (patch)
treebc6aeca07d3bf91e0b57341e25df1900df87f423
parentb25a1e7bc7fb51d0a78c16ba1800c52794073c9a (diff)
downloadledger-17920eef790a0141cd5a4da98c23229a6f0b75a9.tar.gz
ledger-17920eef790a0141cd5a4da98c23229a6f0b75a9.tar.bz2
ledger-17920eef790a0141cd5a4da98c23229a6f0b75a9.zip
(ofx_proc_transaction_cb): Applied patch for a bad reference to
entry->date.
-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;