HBCI data is already in utf8. Don't recode into the local charset

(which may not be utf8).


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14365 57a11ea4-9604-0410-9ed3-97b8803252fd
zzzoldfeatures/swigify
David Hampton 20 years ago
parent 3b29ebdabd
commit 97ccc59855

@ -1,3 +1,8 @@
2006-06-14 David Hampton <hampton@employees.org>
* src/import-export/hbci/gnc-hbci-utils.c: HBCI data is already in
utf8. Don't recode into the local charset (which may not be utf8).
2006-06-14 Christian Stimming <stimming@tuhh.de>
* src/import-export/hbci/gnc-hbci-utils.c: Similarly ensure for

@ -636,12 +636,7 @@ gchar *gnc_call_iconv(GIConv handler, const gchar* input)
const char *gnc_hbci_book_encoding()
{
#if HAVE_LANGINFO_CODESET
char* encoding = nl_langinfo(CODESET);
#else
char* encoding = "UTF-8";
#endif
return encoding;
return "UTF-8";
}
const char *gnc_hbci_AQBANKING_encoding()

Loading…
Cancel
Save