Browse Source

obey date/time formats for locales

master
Chris Guillott 7 years ago
parent
commit
c758871bc1
  1. 3
      i3lock.c

3
i3lock.c

@ -7,6 +7,7 @@
*
*/
#include <stdio.h>
#include <locale.h>
#include <stdlib.h>
#include <pwd.h>
#include <sys/types.h>
@ -946,6 +947,8 @@ int main(int argc, char *argv[]) {
{NULL, no_argument, NULL, 0}};
setlocale(LC_ALL, "");
if ((pw = getpwuid(getuid())) == NULL)
err(EXIT_FAILURE, "getpwuid() failed");
if ((username = pw->pw_name) == NULL)

Loading…
Cancel
Save