Imported Upstream version 2.6.0
[debian/amanda] / client-src / versionsuffix.c
index 91d070000c3d443e56157c87137d0b0355267dd9..d9e2ecbe7715f5519f0a785b4d7d1758098b6bb0 100644 (file)
  */
 #include "amanda.h"
 #include "version.h"
+#include "util.h"
 
 int main(int argc, char **argv);
 
-int main(int argc, char **argv)
+int
+main(
+    int                argc,
+    char **    argv)
 {
-       safe_fd(-1, 0);
-
        (void)argc;     /* Quiet unused parameter warning */
        (void)argv;     /* Quiet unused parameter warning */
 
+       /*
+        * Configure program for internationalization:
+        *   1) Only set the message locale for now.
+        *   2) Set textdomain for all amanda related programs to "amanda"
+        *      We don't want to be forced to support dozens of message catalogs.
+        */  
+       setlocale(LC_MESSAGES, "C");
+       textdomain("amanda"); 
+
+       safe_fd(-1, 0);
+
        set_pname("versionsuffix");
 
-       printf("%s\n", versionsuffix());
+       g_printf("%s\n", versionsuffix());
        return 0;
 }