SVN commit 1154864 by habacker: both values are in the same encoding, so QByteArray fits exactly for the compar M +2 -2 kinit_win.cpp --- trunk/KDE/kdelibs/kinit/kinit_win.cpp #1154863:1154864 @@ -326,8 +326,8 @@ else { /// @todo KUser lacks domain support yet: if user is in a domain skip process owner check for now because it simply does not work - const QString domain = qgetenv("USERDOMAIN"); - const QString host = qgetenv("COMPUTERNAME"); + const QByteArray domain = qgetenv("USERDOMAIN"); + const QByteArray host = qgetenv("COMPUTERNAME"); if (domain != host) return ple;