diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2002-04-15 19:08:30 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2002-04-15 19:08:30 +0000 |
commit | 60b2eeb4f79def7fbc26c6b4548dd91f0808eaa9 (patch) | |
tree | de29b4f34badb6c739732cc5ea504b062856ec11 /TAO | |
parent | 28ec1c2d24ec0800d48395f051e5e77ef4c03b6d (diff) | |
download | ATCD-60b2eeb4f79def7fbc26c6b4548dd91f0808eaa9.tar.gz |
ChangeLogTag:Mon Apr 15 12:06:47 2002 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'TAO')
-rw-r--r-- | TAO/ChangeLogs/ChangeLog-02a | 7 | ||||
-rw-r--r-- | TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.cpp | 4 |
2 files changed, 8 insertions, 3 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a index 6dc38483c4e..0a64b8c3e85 100644 --- a/TAO/ChangeLogs/ChangeLog-02a +++ b/TAO/ChangeLogs/ChangeLog-02a @@ -1,3 +1,10 @@ +Mon Apr 15 12:06:47 2002 Ossama Othman <ossama@uci.edu> + + * orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.cpp + (handle_close_i): + + Fixed unused parameter warning. + Mon Apr 15 20:52:12 2002 Johnny Willemsen <jwillemsen@remedy.nl> * tao/Makefile.bor: diff --git a/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.cpp b/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.cpp index bf3754f2a3d..1ac3dc827cd 100644 --- a/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.cpp +++ b/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.cpp @@ -1,5 +1,3 @@ -// $Id$ - #include "SSLIOP_Connection_Handler.h" #include "SSLIOP_Current.h" #include "SSLIOP_Endpoint.h" @@ -238,7 +236,7 @@ TAO_SSLIOP_Connection_Handler::handle_close (ACE_HANDLE handle, } void -TAO_SSLIOP_Connection_Handler::handle_close_i (ACE_HANDLE handle) +TAO_SSLIOP_Connection_Handler::handle_close_i (ACE_HANDLE) { if (TAO_debug_level) ACE_DEBUG ((LM_DEBUG, |