summaryrefslogtreecommitdiff
path: root/cpp/config/TestUtil.py
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/config/TestUtil.py')
-rw-r--r--cpp/config/TestUtil.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/config/TestUtil.py b/cpp/config/TestUtil.py
index 8410290b0a8..2d33e643a4d 100644
--- a/cpp/config/TestUtil.py
+++ b/cpp/config/TestUtil.py
@@ -33,11 +33,11 @@ host = ""
if protocol == "ssl":
plugin = " --Ice.Plugin.IceSSL=IceSSL:create"
- clientProtocol = plugin + " --Ice.DefaultProtocol=ssl" + \
+ clientProtocol = plugin + " --Ice.Default.Protocol=ssl" + \
" --IceSSL.Client.CertPath=TOPLEVELDIR/certs --IceSSL.Client.Config=client_sslconfig.xml"
- serverProtocol = plugin + " --Ice.DefaultProtocol=ssl" + \
+ serverProtocol = plugin + " --Ice.Default.Protocol=ssl" + \
" --IceSSL.Server.CertPath=TOPLEVELDIR/certs --IceSSL.Server.Config=server_sslconfig.xml"
- clientServerProtocol = plugin + " --Ice.DefaultProtocol=ssl" + \
+ clientServerProtocol = plugin + " --Ice.Default.Protocol=ssl" + \
" --IceSSL.Client.CertPath=TOPLEVELDIR/certs --IceSSL.Client.Config=sslconfig.xml" + \
" --IceSSL.Server.CertPath=TOPLEVELDIR/certs --IceSSL.Server.Config=sslconfig.xml"
else:
@@ -46,7 +46,7 @@ else:
clientServerProtocol = ""
if host != "":
- defaultHost = " --Ice.DefaultHost=" + host
+ defaultHost = " --Ice.Default.Host=" + host
else:
defaultHost = ""