You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by bb...@apache.org on 2021/08/30 19:16:50 UTC

[geode-native] branch support/1.14 updated: Fix build break (missing close paren after merge)

This is an automated email from the ASF dual-hosted git repository.

bbender pushed a commit to branch support/1.14
in repository https://gitbox.apache.org/repos/asf/geode-native.git


The following commit(s) were added to refs/heads/support/1.14 by this push:
     new 1a676aa  Fix build break (missing close paren after merge)
1a676aa is described below

commit 1a676aafe9ea40fb84b1864d1e03b062b74205cb
Author: Blake Bender <bb...@vmware.com>
AuthorDate: Mon Aug 30 12:16:14 2021 -0700

    Fix build break (missing close paren after merge)
---
 cppcache/src/TcrConnection.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cppcache/src/TcrConnection.cpp b/cppcache/src/TcrConnection.cpp
index 6a559ad..dc48ba3 100644
--- a/cppcache/src/TcrConnection.cpp
+++ b/cppcache/src/TcrConnection.cpp
@@ -443,7 +443,7 @@ Connector* TcrConnection::createConnection(
       socket = new TcpSslConn(
           address, connectTimeout, maxBuffSizePool, sniHostname, sniPort,
           systemProperties.sslTrustStore(), systemProperties.sslKeyStore(),
-          systemProperties.sslKeystorePassword();
+          systemProperties.sslKeystorePassword());
     }
   } else {
     socket = new TcpConn(address, connectTimeout, maxBuffSizePool);