bindtextdomain(), and textdomain().
+2008-06-09 Nicolas François <nicolas.francois@centraliens.net>
+
+ * src/su.c: Ignore return value of setlocale(),
+ bindtextdomain(), and textdomain().
+
2008-06-09 Nicolas François <nicolas.francois@centraliens.net>
* src/useradd.c: Use a bool when possible instead of int integers.
sanitize_env ();
- setlocale (LC_ALL, "");
- bindtextdomain (PACKAGE, LOCALEDIR);
- textdomain (PACKAGE);
+ (void) setlocale (LC_ALL, "");
+ (void) bindtextdomain (PACKAGE, LOCALEDIR);
+ (void) textdomain (PACKAGE);
change_environment = 1;