summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorValentin Batz <senneth@irssi.org>2005-07-24 20:01:06 +0000
committervb <vb@dbcabf3a-b0e7-0310-adc4-f8d773084564>2005-07-24 20:01:06 +0000
commit240a7df160dc3ae48657fd1b5d86f931ef07ee20 (patch)
tree6cc343347b3639ea18f7244190b159f1cea248c6 /src/core
parent56041a314402b93835ce26e8a4d1e49db34e0c72 (diff)
downloadirssi-240a7df160dc3ae48657fd1b5d86f931ef07ee20.zip
Forgot to add the additional parameter to g_convert_with_fallback (This always happens when I'm applying patches manually :( )
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3882 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/core')
-rw-r--r--src/core/recode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/recode.c b/src/core/recode.c
index b3668ed0..0a35a06c 100644
--- a/src/core/recode.c
+++ b/src/core/recode.c
@@ -107,7 +107,7 @@ char *recode_in(const SERVER_REC *server, const char *str, const char *target)
to = translit_to = g_strconcat(to, "//TRANSLIT", NULL);
if (from)
- recoded = g_convert_with_fallback(str, len, to, from, NULL, NULL, NULL);
+ recoded = g_convert_with_fallback(str, len, to, from, NULL, NULL, NULL, NULL);
if (!recoded) {
if (term_is_utf8) {
@@ -118,7 +118,7 @@ char *recode_in(const SERVER_REC *server, const char *str, const char *target)
from = "UTF-8";
if (from)
- recoded = g_convert_with_fallback(str, len, to, from, NULL, NULL, NULL);
+ recoded = g_convert_with_fallback(str, len, to, from, NULL, NULL, NULL, NULL);
if (!recoded)
recoded = g_strdup(str);