summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/ChangeLog5
-rw-r--r--TAO/tao/DynamicInterface/Server_Request.cpp2
2 files changed, 6 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 9d96cd715fc..706fcebe5a5 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,8 @@
+Mon Mar 21 10:34:42 UTC 2011 Martin Corino <corino_m@remedy.nl>
+
+ * tao/DynamicInterface/Server_Request.cpp:
+ Fixed typo in fix for deffered_reply() check.
+
Sun Mar 20 13:45:05 UTC 2011 Martin Corino <corino_m@remedy.nl>
* tao/DynamicInterface/Server_Request.cpp:
diff --git a/TAO/tao/DynamicInterface/Server_Request.cpp b/TAO/tao/DynamicInterface/Server_Request.cpp
index ffa1d7ce35b..7bcc213d24d 100644
--- a/TAO/tao/DynamicInterface/Server_Request.cpp
+++ b/TAO/tao/DynamicInterface/Server_Request.cpp
@@ -246,7 +246,7 @@ CORBA::ServerRequest::dsi_marshal (void)
// in case a deferred_reply is specified (like for GIOP::LocateRequest)
// do not send a reply here
- if (this->orb_server_request_.deferred_reply ())
+ if (!this->orb_server_request_.deferred_reply ())
{
this->orb_server_request_.tao_send_reply ();
}