summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2001-12-28 15:48:31 +0000
committerSteve Huston <shuston@riverace.com>2001-12-28 15:48:31 +0000
commitf0ac5f1bfe24fa2ed78aeeebde984d194ab90e6c (patch)
tree95799480681361705addb26dc36a62447a99d9eb /tests
parent8748d7a151a848b6ceeb967a15402883ad0e211c (diff)
downloadATCD-f0ac5f1bfe24fa2ed78aeeebde984d194ab90e6c.tar.gz
ChangeLogTag:Fri Dec 28 10:45:33 2001 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/SSL/Thread_Pool_Reactor_SSL_Test.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/SSL/Thread_Pool_Reactor_SSL_Test.cpp b/tests/SSL/Thread_Pool_Reactor_SSL_Test.cpp
index b1582167f11..750bd729312 100644
--- a/tests/SSL/Thread_Pool_Reactor_SSL_Test.cpp
+++ b/tests/SSL/Thread_Pool_Reactor_SSL_Test.cpp
@@ -301,8 +301,10 @@ main (int argc, ACE_TCHAR *argv[])
ACE_START_TEST (ACE_TEXT ("Thread_Pool_Reactor_SSL_Test"));
ACE_SSL_Context *context = ACE_SSL_Context::instance ();
- context->certificate (ACE_TEXT_ALWAYS_CHAR ("dummy.pem"), SSL_FILETYPE_PEM);
- context->private_key (ACE_TEXT_ALWAYS_CHAR ("key.pem"), SSL_FILETYPE_PEM);
+ // Note - the next two strings are naked on purpose... the arguments to
+ // the ACE_SSL_Context methods are const char *, not ACE_TCHAR *.
+ context->certificate ("dummy.pem", SSL_FILETYPE_PEM);
+ context->private_key ("key.pem", SSL_FILETYPE_PEM);
parse_arg (argc, argv);