From: Art Cancro Date: Mon, 23 May 2011 19:38:00 +0000 (-0400) Subject: ServerShutdownModule_GETTEXT() was failing on non-locale-aware systems, fixed X-Git-Tag: v7.87~17^2~2^2~1 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=5dc2a39e541cfd1aee56f7955ec082326ac3282e ServerShutdownModule_GETTEXT() was failing on non-locale-aware systems, fixed --- diff --git a/webcit/gettext.c b/webcit/gettext.c index 43b8db26e..120f4bcfd 100644 --- a/webcit/gettext.c +++ b/webcit/gettext.c @@ -477,6 +477,7 @@ SessionDestroyModule_GETTEXT #ifdef ENABLE_NLS stop_selected_language(); /* unset locale */ #endif +} void ServerShutdownModule_GETTEXT @@ -492,5 +493,3 @@ ServerShutdownModule_GETTEXT #endif if (!AvailLangLoaded) free(AvailLangLoaded); } - -}