summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2002-05-03 12:08:21 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2002-05-03 12:08:21 +0000
commit8f988626ca45efe1a5ec51ed9dc9aead80c29003 (patch)
tree351cdccdbdfba56d3d01d8ee5b4b961a7fca3b49
parent6a2d3642f178a93e7f5b7a5ce49c3f0cd8a5cffc (diff)
downloadATCD-8f988626ca45efe1a5ec51ed9dc9aead80c29003.tar.gz
ChangeLogTag: Fri May 3 07:07:31 2002 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLogs/ChangeLog-02a6
-rw-r--r--ChangeLogs/ChangeLog-03a6
-rw-r--r--tests/Proactor_Test.cpp14
4 files changed, 25 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index c60d07ef14c..11665d99c4a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Fri May 3 07:07:31 2002 Chad Elliott <elliott_c@ociweb.com>
+
+ * tests/Proactor_Test.cpp:
+
+ Put ACE_TEXT around bare char strings.
+
Fri May 3 06:57:13 2002 Chad Elliott <elliott_c@ociweb.com>
* tests/Proactor_Test.cpp:
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index c60d07ef14c..11665d99c4a 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,9 @@
+Fri May 3 07:07:31 2002 Chad Elliott <elliott_c@ociweb.com>
+
+ * tests/Proactor_Test.cpp:
+
+ Put ACE_TEXT around bare char strings.
+
Fri May 3 06:57:13 2002 Chad Elliott <elliott_c@ociweb.com>
* tests/Proactor_Test.cpp:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index c60d07ef14c..11665d99c4a 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,9 @@
+Fri May 3 07:07:31 2002 Chad Elliott <elliott_c@ociweb.com>
+
+ * tests/Proactor_Test.cpp:
+
+ Put ACE_TEXT around bare char strings.
+
Fri May 3 06:57:13 2002 Chad Elliott <elliott_c@ociweb.com>
* tests/Proactor_Test.cpp:
diff --git a/tests/Proactor_Test.cpp b/tests/Proactor_Test.cpp
index cc5bff8fb2b..ee6ce26b255 100644
--- a/tests/Proactor_Test.cpp
+++ b/tests/Proactor_Test.cpp
@@ -89,17 +89,17 @@ static const size_t MAX_TIME = 3600; // max 1 hour
static size_t seconds = 2; // default time to run - 2 seconds
static ACE_TCHAR request_line[] =
- "GET / HTTP/1.1\r\n";
+ ACE_TEXT ("GET / HTTP/1.1\r\n");
static ACE_TCHAR headers[] =
- "Accept: */*\r\n"
- "Accept-Language: C++\r\n"
- "Accept-Encoding: gzip, deflate\r\n"
- "User-Agent: Proactor_Test/1.0 (non-compatible)\r\n"
- "Connection: Keep-Alive\r\n";
+ ACE_TEXT ("Accept: */*\r\n")
+ ACE_TEXT ("Accept-Language: C++\r\n")
+ ACE_TEXT ("Accept-Encoding: gzip, deflate\r\n")
+ ACE_TEXT ("User-Agent: Proactor_Test/1.0 (non-compatible)\r\n")
+ ACE_TEXT ("Connection: Keep-Alive\r\n");
static ACE_TCHAR end_of_request_header[] =
- "\r\n";
+ ACE_TEXT ("\r\n");
class LogLocker
{