summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2007-04-30 11:35:44 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2007-04-30 11:35:44 +0000
commit86244d01ac29c4fd7095f180be2d8e63c332c32e (patch)
tree43f902756e049034191cd4c646bab26c061c9048
parent09f22600e8341f85bd24659aaa4b81dd01beabb2 (diff)
downloadATCD-86244d01ac29c4fd7095f180be2d8e63c332c32e.tar.gz
ChangeLogTag: Mon Apr 30 11:36:51 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ACE/ChangeLog10
-rw-r--r--ACE/tests/Bug_2912_Regression_Test.cpp6
2 files changed, 12 insertions, 4 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 09307443c1c..2fef64b7538 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,9 +1,15 @@
+Mon Apr 30 11:36:51 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
+
+ * tests/Bug_2912_Regression_Test.cpp:
+
+ Fixed a wide character build issue.
+
Mon Apr 30 04:03:16 UTC 2007 William R. Otte <wotte@dre.vanderbilt.edu>
* bin/make_release.py
-
+
Fixed problem causing TAO/CIAO to be included in ACE and/or
- ACE+TAO only packages.
+ ACE+TAO only packages.
Fri Apr 27 13:37:13 UTC 2007 Dale Wilson <wilsond@ociweb.com>
diff --git a/ACE/tests/Bug_2912_Regression_Test.cpp b/ACE/tests/Bug_2912_Regression_Test.cpp
index 68953a02047..790b8a13897 100644
--- a/ACE/tests/Bug_2912_Regression_Test.cpp
+++ b/ACE/tests/Bug_2912_Regression_Test.cpp
@@ -254,8 +254,10 @@ Server_Service_Handler::open (ACE_HANDLE h, ACE_Message_Block&)
if (this->ssl_stream_.open (*this, h, 0, this->proactor ()) != 0)
{
- ACE_DEBUG ((LM_DEBUG, ACE_TEXT("Server_Service_Handler::open: "
- "ACE_SSL_Asynch_Stream::open failed, %d\n"), (int)errno));
+ ACE_DEBUG ((LM_DEBUG,
+ ACE_TEXT("Server_Service_Handler::open: ")
+ ACE_TEXT("ACE_SSL_Asynch_Stream::open failed, %d\n"),
+ (int)errno));
this->cancel_and_close ();
}
else