Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@woboq.com>2015-01-22 18:30:02 +0300
committerOlivier Goffart <ogoffart@woboq.com>2015-01-22 18:30:02 +0300
commit560759ede8547e26bb92eeee854b981687ac3c54 (patch)
treec7ed2ea5b43525dda83f374b6f5f7507526d7483 /shell_integration
parent0f98a908585c0d4b97a3d1176e25b59a9698a63d (diff)
Windows shell integration: Reduce the timeout time of WaitNamedPipe
This is maybe what causes the troubles of task #2576
Diffstat (limited to 'shell_integration')
-rw-r--r--shell_integration/windows/OCUtil/RemotePathChecker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell_integration/windows/OCUtil/RemotePathChecker.cpp b/shell_integration/windows/OCUtil/RemotePathChecker.cpp
index 317f21572..bfe33022d 100644
--- a/shell_integration/windows/OCUtil/RemotePathChecker.cpp
+++ b/shell_integration/windows/OCUtil/RemotePathChecker.cpp
@@ -45,7 +45,7 @@ void RemotePathChecker::workerThreadLoop()
if (!connected) {
asked.clear();
- if (!WaitNamedPipe(pipename.data(), 5 * 1000)) {
+ if (!WaitNamedPipe(pipename.data(), 100)) {
continue;
}
if (!socket.Connect(pipename)) {