diff options
author | Benoit Foucher <benoit@zeroc.com> | 2015-06-03 13:06:26 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2015-06-03 13:06:26 +0200 |
commit | 9c0e85b80869479563bc57e6915513e3b1fa55bc (patch) | |
tree | a639a0526316622aadf808d4669e455cf21b88e1 /objective-c/test | |
parent | WinRT connection info fixes (diff) | |
download | ice-9c0e85b80869479563bc57e6915513e3b1fa55bc.tar.bz2 ice-9c0e85b80869479563bc57e6915513e3b1fa55bc.tar.xz ice-9c0e85b80869479563bc57e6915513e3b1fa55bc.zip |
Fixed use of deprecated IceSSL property
Diffstat (limited to 'objective-c/test')
-rw-r--r-- | objective-c/test/Common/TestCommon.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/objective-c/test/Common/TestCommon.m b/objective-c/test/Common/TestCommon.m index 658f3962865..a0e2925c4fe 100644 --- a/objective-c/test/Common/TestCommon.m +++ b/objective-c/test/Common/TestCommon.m @@ -68,7 +68,7 @@ defaultServerProperties(int *argc, char** argv) static NSString* ssldefaults[] = { @"Ice.Override.ConnectTimeout", @"10000", // COMPILERFIX: Workaround for SSL hang on iOS devices - @"IceSSL.CertAuthFile", @"cacert.der", + @"IceSSL.CAs", @"cacert.der", @"IceSSL.CheckCertName", @"0", @"IceSSL.CertFile", @"server.p12", @"IceSSL.Password", @"password" @@ -123,7 +123,7 @@ defaultClientProperties(int* argc, char** argv) { @"Ice.Override.ConnectTimeout", @"10000", // COMPILERFIX: Workaround for SSL hang on iOS devices @"IceSSL.CheckCertName", @"0", - @"IceSSL.CertAuthFile", @"cacert.der", + @"IceSSL.CAs", @"cacert.der", @"IceSSL.CertFile", @"client.p12", @"IceSSL.Password", @"password" }; |