Fix missing double quote

This commit is contained in:
qontinuum-dev 2021-08-18 10:29:10 +02:00 committed by GitHub
parent 8e1b95c201
commit fbed82c9fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ void env_init(struct passwd* pwd)
setenv("SHELL", pwd->pw_shell, 1);
setenv("USER", pwd->pw_name, 1);
setenv("LOGNAME", pwd->pw_name, 1);
setenv("LANG", lang ? lang : "en_US.UTF-8, 1);
setenv("LANG", lang ? lang : "en_US.UTF-8", 1);
// Set PATH if specified in the configuration
if (strlen(config.path))