remove setting of LANG env var completly (lang is setup with a default value earlier)

pull/581/head
xelantro 4 months ago committed by GitHub
parent fb8fb7b22d
commit 02c88351ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -220,11 +220,6 @@ void env_init(struct passwd* pwd)
setenv("SHELL", pwd->pw_shell, 1);
setenv("USER", pwd->pw_name, 1);
setenv("LOGNAME", pwd->pw_name, 1);
if (lang)
{
setenv("LANG", lang, 1);
}
// Set PATH if specified in the configuration
if (strlen(config.path))

Loading…
Cancel
Save