(ofx_proc_transaction_cb): Applied patch for a bad reference to
entry->date.
This commit is contained in:
parent
7716630a42
commit
b57c038dad
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);
|
<< " from " << *xact->account);
|
||||||
|
|
||||||
if (data.date_initiated_valid)
|
if (data.date_initiated_valid)
|
||||||
entry->date = data.date_initiated;
|
entry->_date = data.date_initiated;
|
||||||
else if (data.date_posted_valid)
|
else if (data.date_posted_valid)
|
||||||
entry->date = data.date_posted;
|
entry->_date = data.date_posted;
|
||||||
|
|
||||||
if (data.check_number_valid)
|
if (data.check_number_valid)
|
||||||
entry->code = data.check_number;
|
entry->code = data.check_number;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue