summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormsmit <msmit@remedy.nl>2009-03-17 15:29:12 +0000
committermsmit <msmit@remedy.nl>2009-03-17 15:29:12 +0000
commit9864f76dc2e46165f0162e7bdee17290cb106b98 (patch)
tree7929759ca943806df0fe78e6e76a12fe118467ca
parentb5d4d0bf2ec728c010565f64fa4016a6802371ca (diff)
downloadATCD-9864f76dc2e46165f0162e7bdee17290cb106b98.tar.gz
Tue Mar 17 15:26:12 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tao/Messaging/Asynch_Reply_Dispatcher.cpp: Corrected misspelled log messages. * tests/ZIOP/TestCompressor/TestCompressor.cpp: Resolved compiler warnings on Solaris.
-rw-r--r--TAO/ChangeLog8
-rw-r--r--TAO/tao/Messaging/Asynch_Reply_Dispatcher.cpp4
-rw-r--r--TAO/tests/ZIOP/TestCompressor/TestCompressor.cpp4
3 files changed, 12 insertions, 4 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 9757d21f62b..e20a8cb1b41 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,11 @@
+Tue Mar 17 15:26:12 UTC 2009 Marcel Smit <msmit@remedy.nl>
+
+ * tao/Messaging/Asynch_Reply_Dispatcher.cpp:
+ Corrected misspelled log messages.
+
+ * tests/ZIOP/TestCompressor/TestCompressor.cpp:
+ Resolved compiler warnings on Solaris.
+
Tue Mar 17 10:09:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/HTIOP/HTIOP_Transport.cpp:
diff --git a/TAO/tao/Messaging/Asynch_Reply_Dispatcher.cpp b/TAO/tao/Messaging/Asynch_Reply_Dispatcher.cpp
index 00cd3bab7d3..2a2d66ad5f2 100644
--- a/TAO/tao/Messaging/Asynch_Reply_Dispatcher.cpp
+++ b/TAO/tao/Messaging/Asynch_Reply_Dispatcher.cpp
@@ -182,7 +182,7 @@ TAO_Asynch_Reply_Dispatcher::connection_closed (void)
if (TAO_debug_level >= 4)
{
ex._tao_print_exception (
- "Asynch_Reply_Dispacher::connection_closed");
+ "Asynch_Reply_Dispatcher::connection_closed");
}
}
@@ -237,7 +237,7 @@ TAO_Asynch_Reply_Dispatcher::reply_timed_out (void)
{
if (TAO_debug_level >= 4)
{
- ex._tao_print_exception ("Asynch_Reply_Dispacher::reply_timed_out");
+ ex._tao_print_exception ("Asynch_Reply_Dispatcher::reply_timed_out");
}
}
diff --git a/TAO/tests/ZIOP/TestCompressor/TestCompressor.cpp b/TAO/tests/ZIOP/TestCompressor/TestCompressor.cpp
index 96ef22e7505..ef1bba0bc57 100644
--- a/TAO/tests/ZIOP/TestCompressor/TestCompressor.cpp
+++ b/TAO/tests/ZIOP/TestCompressor/TestCompressor.cpp
@@ -21,7 +21,7 @@ TestCompressor::compress (
const ::Compression::Buffer &,
::Compression::Buffer &)
{
- throw ::Compression::CompressionException (-1, "");
+ throw ::Compression::CompressionException (0, "");
}
void
@@ -29,7 +29,7 @@ TestCompressor::decompress (
const ::Compression::Buffer &,
::Compression::Buffer &)
{
- throw ::Compression::CompressionException (-1, "");
+ throw ::Compression::CompressionException (0, "");
}
}