diff options
author | mcorino <mcorino@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2010-08-24 09:10:15 +0000 |
---|---|---|
committer | mcorino <mcorino@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2010-08-24 09:10:15 +0000 |
commit | 4bb8e0a1c7c0302956ce040c22044ddbbf0efb93 (patch) | |
tree | 6631a69ef018995c5847742edb0e7c24939a6370 /TAO | |
parent | f66182cf53d76725d3761d8dfaa842168f0cca33 (diff) | |
download | ATCD-4bb8e0a1c7c0302956ce040c22044ddbbf0efb93.tar.gz |
Tue Aug 24 09:09:41 UTC 2010 Martin Corino <mcorino@remedy.nl>
* tao/IIOP_Acceptor.cpp:
Removed superfluous safety check.
Diffstat (limited to 'TAO')
-rw-r--r-- | TAO/ChangeLog | 5 | ||||
-rw-r--r-- | TAO/tao/IIOP_Acceptor.cpp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog index 38b03cc1fd1..07814f5d8e0 100644 --- a/TAO/ChangeLog +++ b/TAO/ChangeLog @@ -1,3 +1,8 @@ +Tue Aug 24 09:09:41 UTC 2010 Martin Corino <mcorino@remedy.nl> + + * tao/IIOP_Acceptor.cpp: + Removed superfluous safety check. + Tue Aug 24 08:45:41 UTC 2010 Martin Corino <mcorino@remedy.nl> * tao/Connection_Handler.h: diff --git a/TAO/tao/IIOP_Acceptor.cpp b/TAO/tao/IIOP_Acceptor.cpp index 52276d5043d..6e007a4e283 100644 --- a/TAO/tao/IIOP_Acceptor.cpp +++ b/TAO/tao/IIOP_Acceptor.cpp @@ -282,7 +282,7 @@ TAO_IIOP_Acceptor::open (TAO_ORB_Core *orb_core, ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("TAO (%P|%t) - ") ACE_TEXT ("IIOP_Acceptor::open, address==%C, options=%C\n"), - address, options != 0 ? options : "(null)")); + address, options)); } this->orb_core_ = orb_core; |