Maemo: Remove special case for "developer" user.

This user now also resides under /home on the device.
This commit is contained in:
ck
2010-01-20 12:13:08 +01:00
parent 4c37504540
commit ed5a0fb0b2

View File

@@ -49,9 +49,7 @@ QString homeDirOnDevice(const QString &uname)
{
const QString &dir = uname == QLatin1String("root")
? QLatin1String("/root")
: uname == QLatin1String("developer")
? QLatin1String("/var/local/mad-developer-home")
: QLatin1String("/home/") + uname;
: QLatin1String("/home/") + uname;
qDebug("%s: user name %s is mapped to home dir %s",
Q_FUNC_INFO, qPrintable(uname), qPrintable(dir));
return dir;