(ofx_proc_transaction_cb): Applied patch for a bad reference to

entry->date.
This commit is contained in:
John Wiegley 2006-02-15 21:20:35 +00:00
parent b25a1e7bc7
commit 17920eef79

4
ofx.cc
View file

@ -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;