mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
Use qputenv() instead of putenv().
svn path=/trunk/KDE/kdebase/apps/; revision=1194042
This commit is contained in:
parent
bd194dd6dd
commit
5761bc8259
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ int ChfnProcess::exec(const char *pass, const char *name)
|
|||
{
|
||||
// Try to set the default locale to make the parsing of the output
|
||||
// of `chfn' easier.
|
||||
putenv((char*)"LC_ALL=C");
|
||||
qputenv("LC_ALL", "C");
|
||||
|
||||
QList<QByteArray> args;
|
||||
args += "-f";
|
||||
|
|
Loading…
Reference in a new issue