1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-01-21 14:47:03 +01:00

* strgutil.c (load_libiconv): Use log_info to avoid failures when

iconv.dll is not installed.
This commit is contained in:
Werner Koch 2004-11-03 16:40:29 +00:00
parent 36ca1121b5
commit b467558d9e
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-11-02 Werner Koch <wk@g10code.com>
* strgutil.c (load_libiconv): Use log_info to avoid failures when
iconv.dll is not installed.
2004-10-31 Werner Koch <wk@g10code.com> 2004-10-31 Werner Koch <wk@g10code.com>
* simple-gettext.c (get_string): Removed debugging hack. * simple-gettext.c (get_string): Removed debugging hack.

View File

@ -142,7 +142,7 @@ load_libiconv (void)
} }
if (!handle || !iconv_close) if (!handle || !iconv_close)
{ {
log_error (_("error loading `%s': %s\n"), log_info (_("error loading `%s': %s\n"),
"iconv.dll", dlerror ()); "iconv.dll", dlerror ());
iconv_open = NULL; iconv_open = NULL;
iconv = NULL; iconv = NULL;