diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-07-15 14:17:00 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-07-15 14:17:00 +0000 |
commit | 543e178ae44975483e678b38d028a32a52944e13 (patch) | |
tree | 8ea55ca3e21d1614721145ac1651242f85b03765 | |
parent | 0e0bd00434e4fbc4497268d9741054192a774964 (diff) | |
download | ATCD-543e178ae44975483e678b38d028a32a52944e13.tar.gz |
ChangeLogTag:Mon Jul 15 10:16:07 2002 Carlos O'Ryan <coryan@atdesk.com>
-rw-r--r-- | TAO/ChangeLog | 26 | ||||
-rw-r--r-- | TAO/utils/catior/catior.cpp | 4 |
2 files changed, 18 insertions, 12 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog index 398f4d70885..29b00e667d6 100644 --- a/TAO/ChangeLog +++ b/TAO/ChangeLog @@ -1,12 +1,18 @@ +Mon Jul 15 10:16:07 2002 Carlos O'Ryan <coryan@atdesk.com> + + * utils/catior/catior.cpp: + Print out unknown profiles, so at least we get some output out + of them. + Sat Jul 13 23:46:56 2002 Balachandran Natarajan <bala@cs.wustl.edu> - * tests/Stack_Recursion/Client_Task.cpp: + * tests/Stack_Recursion/Client_Task.cpp: * tests/Stack_Recursion/Client_Task.h: Fixed compile errors in builds where exceptions are turned off. Sat Jul 13 15:26:33 2002 Balachandran Natarajan <bala@cs.wustl.edu> - * tao/Utils/RIR_Narrow.cpp (narrow): + * tao/Utils/RIR_Narrow.cpp (narrow): * tao/Utils/RIR_Narrow.h: Fixed some more fuzz errors. Sat Jul 13 15:19:20 2002 Balachandran Natarajan <bala@cs.wustl.edu> @@ -20,18 +26,18 @@ Sat Jul 13 15:14:43 2002 Balachandran Natarajan <bala@cs.wustl.edu> * tests/Nested_Upcall_Crash/server.dsp: * tests/Nested_Upcall_Crash/scavenger.dsp: Fixed the dsp files to include the right files. This should prevent link errors in the - Win32 builds. + Win32 builds. Sat Jul 13 14:57:31 2002 Balachandran Natarajan <bala@cs.wustl.edu> * tests/RTCORBA/Profile_And_Endpoint_Selection/client.dsp: * tests/RTCORBA/Profile_And_Endpoint_Selection/server.dsp: Fixed the path to strategies library. Shuld fix link errors with Win32 - builds. + builds. Sat Jul 13 14:26:37 2002 Balachandran Natarajan <bala@cs.wustl.edu> - * tests/POA/Persistent_ID/server.cpp (method): + * tests/POA/Persistent_ID/server.cpp (method): * tao/Utils/RIR_Narrow.cpp: Fixed fuzz errors. Sat Jul 13 13:22:19 2002 Balachandran Natarajan <bala@cs.wustl.edu> @@ -40,25 +46,25 @@ Sat Jul 13 13:22:19 2002 Balachandran Natarajan <bala@cs.wustl.edu> * tests/Stack_Recursion/Makefile.bor: * tests/Stack_Recursion/server.bor: * tests/Stack_Recursion/client.bor: Makefiles for different - platforms. + platforms. * tests/Stack_Recursion/run_test.pl: The core files should be cleaned up when program exits, else the test could fill up the - file system and prevent other tests from running. + file system and prevent other tests from running. * tests/Makefile: - * tests/Makefile.bor: Added the new test to the daily builds. + * tests/Makefile.bor: Added the new test to the daily builds. Sat Jul 13 09:26:53 2002 Balachandran Natarajan <bala@cs.wustl.edu> * tests/Stack_Recursion/client.cpp: * tests/Stack_Recursion/Client_Task.h: - * tests/Stack_Recursion/Client_Task.cpp (svc): + * tests/Stack_Recursion/Client_Task.cpp (svc): * tests/Stack_Recursion/Sender.cpp: * tests/Stack_Recursion/Sender.h: * tests/Stack_Recursion/server.cpp: * tests/Stack_Recursion/Server_Task.h: - * tests/Stack_Recursion/Server_Task.cpp: + * tests/Stack_Recursion/Server_Task.cpp: * tests/Stack_Recursion/Test.idl: * tests/Stack_Recursion/run_test.pl: A stress test for [BUG 1125], the infamous stack recursion problem. diff --git a/TAO/utils/catior/catior.cpp b/TAO/utils/catior/catior.cpp index 502ea5dc8c6..b8e108f3419 100644 --- a/TAO/utils/catior/catior.cpp +++ b/TAO/utils/catior/catior.cpp @@ -276,9 +276,9 @@ catior (char* str else { ACE_DEBUG ((LM_DEBUG, "%{")); - continue_decoding = stream.skip_string (); ACE_DEBUG ((LM_DEBUG, - "%I unknown tag %d skipping\n", tag)); + "%I Profile tag = %d (unknown protocol)\n", tag)); + continue_decoding = cat_octet_seq("Profile body", stream); ACE_DEBUG ((LM_DEBUG, "%}")); } } |