diff options
author | Tobias Hunger <tobias.hunger@qt.io> | 2016-09-09 10:50:23 (GMT) |
---|---|---|
committer | Tobias Hunger <tobias.hunger@qt.io> | 2016-09-22 14:30:02 (GMT) |
commit | cc576c2c7f3272ec5370dc3cb45838c20d1837f9 (patch) | |
tree | 602548f309c03bb384d81d254271fd6a01b15516 /Source/cmServer.cxx | |
parent | 277ffa2881d4073a660490f959cb58ad0dcb3f82 (diff) | |
download | CMake-cc576c2c7f3272ec5370dc3cb45838c20d1837f9.zip CMake-cc576c2c7f3272ec5370dc3cb45838c20d1837f9.tar.gz CMake-cc576c2c7f3272ec5370dc3cb45838c20d1837f9.tar.bz2 |
server-mode: Pass server into cmServerProtocol
The information will be needed to send signals.
Diffstat (limited to 'Source/cmServer.cxx')
-rw-r--r-- | Source/cmServer.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmServer.cxx b/Source/cmServer.cxx index b0675da..f7e5e3b 100644 --- a/Source/cmServer.cxx +++ b/Source/cmServer.cxx @@ -220,7 +220,7 @@ cmServerResponse cmServer::SetProtocolVersion(const cmServerRequest& request) } std::string errorMessage; - if (!this->Protocol->Activate(request, &errorMessage)) { + if (!this->Protocol->Activate(this, request, &errorMessage)) { this->Protocol = CM_NULLPTR; return request.ReportError("Failed to activate protocol version: " + errorMessage); |