* import-export/ofx/gnc-ofx-import.c: use gnc_timespec_to_iso8601_buff() instead of strftime()

* import-export/ofx/gncmod-ofx-import.c: "remove" two unused variables


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7426 57a11ea4-9604-0410-9ed3-97b8803252fd
zzzoldfeatures/g2-gog-integ
Derek Atkins 24 years ago
parent cdd5577825
commit abbdfbd1f7

@ -6,6 +6,9 @@
so users can define where to look for libofx.
* import-export/ofx/Makefile.am -- use new configure glue
* import-export/ofx/gnc-ofx-import.c: use gnc_timespec_to_iso8601_buff() instead of strftime()
* import-export/ofx/gncmod-ofx-import.c: "remove" two unused variables
2002-10-28 Christian Stimming <stimming@tuhh.de>
* intl-scm/xgettext.scm: Add the file name of scheme files to

@ -235,7 +235,9 @@ int ofx_proc_transaction_cb(struct OfxTransactionData data)
g_free(tmp);
}
if(data.date_funds_available_valid==true){
strftime(dest_string,sizeof(dest_string),"%c %Z",localtime(&(data.date_funds_available)));
Timespec ts;
timespecFromTime_t(&ts, data.date_funds_available);
gnc_timespec_to_iso8601_buff (ts, dest_string);
tmp=notes;
notes=g_strdup_printf("%s%s%s",tmp,"|Date funds available:", dest_string);
g_free(tmp);

@ -20,8 +20,8 @@ int libgncmod_ofx_LTX_gnc_module_current = 0;
int libgncmod_ofx_LTX_gnc_module_revision = 0;
int libgncmod_ofx_LTX_gnc_module_age = 0;
static GNCModule bus_core;
static GNCModule file;
//static GNCModule bus_core;
//static GNCModule file;
/* forward references */
char *libgncmod_ofx_LTX_gnc_module_path(void);

Loading…
Cancel
Save