remove a pointless call of setlocale(3);
authorschwarze <schwarze@openbsd.org>
Wed, 10 Nov 2021 15:06:24 +0000 (15:06 +0000)
committerschwarze <schwarze@openbsd.org>
Wed, 10 Nov 2021 15:06:24 +0000 (15:06 +0000)
patch from Jan Stary <hans at stare dot cz>;
OK martijn@

usr.bin/who/who.c

index c1582a0..13e911e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: who.c,v 1.30 2021/07/12 15:09:20 beck Exp $   */
+/*     $OpenBSD: who.c,v 1.31 2021/11/10 15:06:24 schwarze Exp $       */
 /*     $NetBSD: who.c,v 1.4 1994/12/07 04:28:49 jtc Exp $      */
 
 /*
@@ -44,7 +44,6 @@
 #include <unistd.h>
 #include <time.h>
 #include <err.h>
-#include <locale.h>
 
 void  output(struct utmp *);
 void  output_labels(void);
@@ -72,8 +71,6 @@ main(int argc, char *argv[])
        char *t;
        int c;
 
-       setlocale(LC_ALL, "");
-
        if (pledge("stdio unveil rpath getpw", NULL) == -1)
                err(1, "pledge");