--- statusbox.cpp.orig 2005-02-17 02:06:44.000000000 -0500 +++ statusbox.cpp 2005-02-17 03:03:18.000000000 -0500 @@ -1172,7 +1172,10 @@ // Perform the database queries QSqlQuery path = db->exec("SELECT * FROM settings" - " where value=\"RecordFilePrefix\";"); + " where value=\"RecordFilePrefix\"" + " and hostname = \"" + + gContext->GetHostName() + + "\";"); contentLines[count] = " " + QString(QObject::tr("Recordings")) + ": "; @@ -1190,7 +1193,10 @@ // Ditto for the second path contentLines[count] = " " + QString(QObject::tr("TV buffer")) + ": "; path = db->exec("SELECT * FROM settings" - " where value=\"LiveBufferDir\";"); + " where value=\"LiveBufferDir\"" + " and hostname = \"" + + gContext->GetHostName() + + "\";"); if (path.isActive() && path.numRowsAffected()) { path.next();