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:
authorMarkus Goetz <markus@woboq.com>2019-03-21 11:28:03 +0300
committerMarkus Goetz <markus@woboq.com>2019-03-21 11:28:03 +0300
commitc5a58af8bd1a714b0c0bbd65fd0b61c4c8081592 (patch)
tree096b9942da98bf6fbf845ed16046d44b97c62871 /shell_integration
parent754deb286db3872ba0a23d7090ff0a15e0877e74 (diff)
Windows: Fix compile in shell_integration (2)
Diffstat (limited to 'shell_integration')
-rw-r--r--shell_integration/windows/OCUtil/CommunicationSocket.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell_integration/windows/OCUtil/CommunicationSocket.cpp b/shell_integration/windows/OCUtil/CommunicationSocket.cpp
index c0d85b1ad..9d25bd84a 100644
--- a/shell_integration/windows/OCUtil/CommunicationSocket.cpp
+++ b/shell_integration/windows/OCUtil/CommunicationSocket.cpp
@@ -47,7 +47,7 @@ std::wstring getUserName() {
std::wstring CommunicationSocket::DefaultPipePath()
{
auto pipename = std::wstring(L"\\\\.\\pipe\\");
- pipename += APPLICATION_SHORTNAME;
+ pipename.append(APPLICATION_SHORTNAME);
pipename += L"-";
pipename += getUserName();
return pipename;