diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 2001-03-15 18:02:58 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 2001-03-15 18:02:58 +0000 |
commit | 5c92571980519c7972651f4d1cee265846d8fe21 (patch) | |
tree | ab78a07d8f679f5ed8127189283bbb7b3e3be42f | |
parent | 22fe7bb838daf9acadcea4771e764429f3dd834a (diff) | |
download | ATCD-5c92571980519c7972651f4d1cee265846d8fe21.tar.gz |
ChangeLogTag:Thu Mar 15 05:46:59 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-02a | 9 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-03a | 9 | ||||
-rw-r--r-- | TAO/ChangeLogs/ChangeLog-02a | 2 | ||||
-rw-r--r-- | ace/FILE_Addr.cpp | 2 |
5 files changed, 26 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog index f4501abcd81..0622b6290ba 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Thu Mar 15 05:46:59 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu> + + * ace/FILE_Addr.cpp (ACE_FILE_Addr): Make sure to divide the size of + the filename_ by the sizeof (ACE_TCHAR) to handle unicode + correctly. Thanks to the ever vigilant Ivan Murphy for catching + this! + Wed Mar 14 01:47:10 2001 Nanbor Wang <nanbor@cs.wustl.edu> * apps/Gateway/Gateway/Makefile: @@ -1861,7 +1868,7 @@ Fri Feb 16 05:37:47 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu> the various options mean. * tests/Log_Msg_Test.cpp (test_log_msg_features): Added - ACE_Log_Msg::PROCESS to a coupld or priority_mask() calls to + ACE_Log_Msg::PROCESS to a couple of priority_mask() calls to make the test work correctly. Thanks to Kitty for reporting this. diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a index f4501abcd81..0622b6290ba 100644 --- a/ChangeLogs/ChangeLog-02a +++ b/ChangeLogs/ChangeLog-02a @@ -1,3 +1,10 @@ +Thu Mar 15 05:46:59 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu> + + * ace/FILE_Addr.cpp (ACE_FILE_Addr): Make sure to divide the size of + the filename_ by the sizeof (ACE_TCHAR) to handle unicode + correctly. Thanks to the ever vigilant Ivan Murphy for catching + this! + Wed Mar 14 01:47:10 2001 Nanbor Wang <nanbor@cs.wustl.edu> * apps/Gateway/Gateway/Makefile: @@ -1861,7 +1868,7 @@ Fri Feb 16 05:37:47 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu> the various options mean. * tests/Log_Msg_Test.cpp (test_log_msg_features): Added - ACE_Log_Msg::PROCESS to a coupld or priority_mask() calls to + ACE_Log_Msg::PROCESS to a couple of priority_mask() calls to make the test work correctly. Thanks to Kitty for reporting this. diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a index f4501abcd81..0622b6290ba 100644 --- a/ChangeLogs/ChangeLog-03a +++ b/ChangeLogs/ChangeLog-03a @@ -1,3 +1,10 @@ +Thu Mar 15 05:46:59 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu> + + * ace/FILE_Addr.cpp (ACE_FILE_Addr): Make sure to divide the size of + the filename_ by the sizeof (ACE_TCHAR) to handle unicode + correctly. Thanks to the ever vigilant Ivan Murphy for catching + this! + Wed Mar 14 01:47:10 2001 Nanbor Wang <nanbor@cs.wustl.edu> * apps/Gateway/Gateway/Makefile: @@ -1861,7 +1868,7 @@ Fri Feb 16 05:37:47 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu> the various options mean. * tests/Log_Msg_Test.cpp (test_log_msg_features): Added - ACE_Log_Msg::PROCESS to a coupld or priority_mask() calls to + ACE_Log_Msg::PROCESS to a couple of priority_mask() calls to make the test work correctly. Thanks to Kitty for reporting this. diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a index 023dd711337..98c4841fc13 100644 --- a/TAO/ChangeLogs/ChangeLog-02a +++ b/TAO/ChangeLogs/ChangeLog-02a @@ -688,7 +688,7 @@ Sat Mar 10 11:29:16 2001 Balachandran Natarajan <bala@cs.wustl.edu> Sat Mar 10 09:39:45 2001 Balachandran Natarajan <bala@cs.wustl.edu> * Reverted the change made by Paul Calabrese vide "Fri Mar 9 - 14:38:06 2001 Paul Calabrese <calabrese_p@ociweb.com>". This + 14:38:06 2001 Paul Calabrese <calabrese_p@ociweb.com>. This change was breaking all the tests for Sequences in $TAO_ROOT/tests/Param_Test. diff --git a/ace/FILE_Addr.cpp b/ace/FILE_Addr.cpp index 53c27bf7856..41a8d3a259c 100644 --- a/ace/FILE_Addr.cpp +++ b/ace/FILE_Addr.cpp @@ -12,7 +12,7 @@ ACE_RCSID(ace, FILE_Addr, "$Id$") ACE_ALLOC_HOOK_DEFINE(ACE_FILE_Addr) ACE_FILE_Addr::ACE_FILE_Addr (void) - : ACE_Addr (AF_FILE, sizeof this->filename_) + : ACE_Addr (AF_FILE, sizeof this->filename_ / sizeof (ACE_TCHAR)) { this->filename_[0] = '\0'; } |