summaryrefslogtreecommitdiff
path: root/src/cups/i18n.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cups/i18n.c')
-rw-r--r--src/cups/i18n.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/cups/i18n.c b/src/cups/i18n.c
index 81c4488..ee3e749 100644
--- a/src/cups/i18n.c
+++ b/src/cups/i18n.c
@@ -1,5 +1,5 @@
/*
- * "$Id: i18n.c,v 1.8 2009/04/11 19:05:12 rlk Exp $"
+ * "$Id: i18n.c,v 1.9 2013/12/14 19:23:58 rlk Exp $"
*
* Internationalization functions for CUPS drivers.
*
@@ -244,12 +244,12 @@ stp_i18n_load(const char *locale) /* I - Locale name */
*/
stpi_unquote(utf8str);
- stp_string_list_add_string(po, id, utf8str);
+ stp_string_list_add_string_unsafe(po, id, utf8str);
}
else
{
stpi_unquote(str);
- stp_string_list_add_string(po, id, str);
+ stp_string_list_add_string_unsafe(po, id, str);
}
}
else if (!id[0] && str[0] && !ic)
@@ -362,12 +362,12 @@ stp_i18n_load(const char *locale) /* I - Locale name */
*/
stpi_unquote(utf8str);
- stp_string_list_add_string(po, id, utf8str);
+ stp_string_list_add_string_unsafe(po, id, utf8str);
}
else
{
stpi_unquote(str);
- stp_string_list_add_string(po, id, str);
+ stp_string_list_add_string_unsafe(po, id, str);
}
}
@@ -479,5 +479,5 @@ stpi_unquote(char *s) /* IO - Original string */
/*
- * End of "$Id: i18n.c,v 1.8 2009/04/11 19:05:12 rlk Exp $".
+ * End of "$Id: i18n.c,v 1.9 2013/12/14 19:23:58 rlk Exp $".
*/