(ofx_proc_transaction_cb): Applied patch for a bad reference to
entry->date.
This commit is contained in:
parent
b25a1e7bc7
commit
17920eef79
1 changed files with 2 additions and 2 deletions
4
ofx.cc
4
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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue