소스 검색

Fix the socket path to /tmp on Unix so that we can remove it when it's stale.

Tobias Hieta 9 년 전
부모
커밋
d32c32c052
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      src/shared/Paths.cpp

+ 4 - 0
src/shared/Paths.cpp

@@ -86,5 +86,9 @@ QString Paths::socketName(const QString& serverName)
   if(userName.isEmpty())
     userName = "unknown";
 
+#ifdef Q_OS_UNIX
+  return QString("/tmp/pmp_%1_%2.sock").arg(serverName).arg(userName);
+#else
   return QString("pmp_%1_%2.sock").arg(serverName).arg(userName);
+#endif
 }