diff options
author | Benoit Foucher <benoit@zeroc.com> | 2005-03-09 20:34:59 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2005-03-09 20:34:59 +0000 |
commit | 4dcc97ef369cd66e4525ab7f6cc360bfcff57a88 (patch) | |
tree | 132686e9cbd0c99b41ec97d5c4db1c11752238b5 /java/config/TestUtil.py | |
parent | *** empty log message *** (diff) | |
download | ice-4dcc97ef369cd66e4525ab7f6cc360bfcff57a88.tar.bz2 ice-4dcc97ef369cd66e4525ab7f6cc360bfcff57a88.tar.xz ice-4dcc97ef369cd66e4525ab7f6cc360bfcff57a88.zip |
Fixed certs location
Diffstat (limited to 'java/config/TestUtil.py')
-rw-r--r-- | java/config/TestUtil.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/java/config/TestUtil.py b/java/config/TestUtil.py index 374e5504cbe..2909b62d29a 100644 --- a/java/config/TestUtil.py +++ b/java/config/TestUtil.py @@ -180,15 +180,15 @@ if protocol == "ssl": " --IceSSL.Server.Password=password" cppPlugin = " --Ice.Plugin.IceSSL=IceSSL:create" cppClientProtocol = cppPlugin + " --Ice.Default.Protocol=ssl" + \ - " --IceSSL.Client.CertPath=" + os.path.join(toplevel, "certs", "cpp") + \ + " --IceSSL.Client.CertPath=" + os.path.join(toplevel, "certs") + \ " --IceSSL.Client.Config=client_sslconfig.xml" cppServerProtocol = cppPlugin + " --Ice.Default.Protocol=ssl" + \ - " --IceSSL.Server.CertPath=" + os.path.join(toplevel, "certs", "cpp") + \ + " --IceSSL.Server.CertPath=" + os.path.join(toplevel, "certs") + \ " --IceSSL.Server.Config=server_sslconfig.xml" cppClientServerProtocol = cppPlugin + " --Ice.Default.Protocol=ssl" + \ - " --IceSSL.Client.CertPath=" + os.path.join(toplevel, "certs", "cpp") + \ + " --IceSSL.Client.CertPath=" + os.path.join(toplevel, "certs") + \ " --IceSSL.Client.Config=sslconfig.xml" + \ - " --IceSSL.Server.CertPath=" + os.path.join(toplevel, "certs", "cpp") + \ + " --IceSSL.Server.CertPath=" + os.path.join(toplevel, "certs") + \ " --IceSSL.Server.Config=sslconfig.xml" else: clientProtocol = "" |