From bdd6ecc8b6d1239ac25d14d410d0a510716783b4 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Sun, 26 Feb 2012 15:27:04 -0500 Subject: [PATCH] fml --- webcit/gettext.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webcit/gettext.c b/webcit/gettext.c index 5ae103945..e1ced5b5f 100644 --- a/webcit/gettext.c +++ b/webcit/gettext.c @@ -51,7 +51,7 @@ locale_t *wc_locales; /* here we keep the parsed stuff */ #endif /* Keep information about one locale */ -typedef struct _lang_pref{ +typedef struct _lang_pref { char lang[16]; /* the language locale string */ char region[16]; /* the region locale string */ long priority; /* which priority does it have */ @@ -367,9 +367,9 @@ void initialize_locales(void) { #ifdef ENABLE_NLS setlocale(LC_ALL, ""); - syslog(9, "Message catalog directory: %s", bindtextdomain("webcit", LOCALEDIR"/locale")); syslog(9, "Text domain: %s", textdomain("webcit")); - syslog(9, "Text domain Charset: %s", bind_textdomain_codeset("webcit","UTF8")); + syslog(9, "Text domain Charset: %s", bind_textdomain_codeset("webcit", "UTF8")); + syslog(9, "Message catalog directory: %s", bindtextdomain(textdomain(NULL), LOCALEDIR"/locale")); #endif } -- 2.30.2