Imported Upstream version 2.6.0
[debian/amanda] / client-src / versionsuffix.c
index d0ed70f744b5d93eff0b0645c9770cf4c46d20b4..d9e2ecbe7715f5519f0a785b4d7d1758098b6bb0 100644 (file)
  * file named AUTHORS, in the root directory of this distribution.
  */
 /*
- * $Id: versionsuffix.c,v 1.8 2005/09/20 21:32:25 jrjackson Exp $
+ * $Id: versionsuffix.c,v 1.9 2006/05/25 01:47:11 johnfranks Exp $
  *
  * prints the (possibly empty) suffix appended to amanda program names
  */
 #include "amanda.h"
 #include "version.h"
+#include "util.h"
 
-int main P((void));
+int main(int argc, char **argv);
 
-int main()
+int
+main(
+    int                argc,
+    char **    argv)
 {
+       (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;
 }