9
4
Fork 1

ksmserver: Use the IceAuthFileName() function

instead of building the file name.

This relates to bug 3027.

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
pull/103/head
Slávek Banko vor 4 Jahren
Ursprung 49084ebc64
Commit ed93cf0e08
Signiert von: SlavekB
GPG-Schlüssel-ID: 608F5293A04BE668

@ -99,14 +99,10 @@ void sanity_check( int argc, char* argv[] )
}
if (msg.isEmpty())
{
path = getenv("ICEAUTHORITY");
path = IceAuthFileName();
if (path.isEmpty())
{
path = getenv("HOME");
path += "/.ICEauthority";
}
if (access(path.data(), W_OK) && (errno != ENOENT))
msg = "Unable to determine path for ICEauthority file.";
else if (access(path.data(), W_OK) && (errno != ENOENT))
msg = "No write access to '%s'.";
else if (access(path.data(), R_OK) && (errno != ENOENT))
msg = "No read access to '%s'.";

Laden…
Abbrechen
Speichern