* src/su.c: Ignore return value of setlocale(),
bindtextdomain(), and textdomain().
This commit is contained in:
6
src/su.c
6
src/su.c
@ -336,9 +336,9 @@ int main (int argc, char **argv)
|
||||
|
||||
sanitize_env ();
|
||||
|
||||
setlocale (LC_ALL, "");
|
||||
bindtextdomain (PACKAGE, LOCALEDIR);
|
||||
textdomain (PACKAGE);
|
||||
(void) setlocale (LC_ALL, "");
|
||||
(void) bindtextdomain (PACKAGE, LOCALEDIR);
|
||||
(void) textdomain (PACKAGE);
|
||||
|
||||
change_environment = 1;
|
||||
|
||||
|
Reference in New Issue
Block a user