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
This commit is contained in:
David Hampton 2006-06-14 22:34:50 +00:00
parent 3b29ebdabd
commit 97ccc59855
2 changed files with 6 additions and 6 deletions

View File

@ -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> 2006-06-14 Christian Stimming <stimming@tuhh.de>
* src/import-export/hbci/gnc-hbci-utils.c: Similarly ensure for * src/import-export/hbci/gnc-hbci-utils.c: Similarly ensure for

View File

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