X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Frss.c;h=6a962559a27b9b6f95ead77cc68ac6dd9096f76b;hb=928e2b479b20b370fd8d4ee1fa1596d40798b494;hp=937fcbff57bdbce48cc5434469c1add642c3091e;hpb=87a8f096f034168055f8c8e436784091e8030024;p=citadel.git diff --git a/webcit/rss.c b/webcit/rss.c index 937fcbff5..6a962559a 100644 --- a/webcit/rss.c +++ b/webcit/rss.c @@ -246,7 +246,7 @@ void display_rss(char *roomname, char *request_method) /** Set up a character set conversion if we need to */ #ifdef HAVE_ICONV if (strcasecmp(charset, "us-ascii") && strcasecmp(charset, "utf-8") && strcasecmp(charset, "") ) { - ic = iconv_open("UTF-8", charset); + ic = ctdl_iconv_open("UTF-8", charset); if (ic == (iconv_t)(-1)) { lprintf(5, "%s:%d iconv_open() failed: %s\n", __FILE__, __LINE__, strerror(errno));