summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--examples/IPC_SAP/SSL_SAP/SSL-server-fancy.cpp6
2 files changed, 9 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index bf03f0a3671..3d4c1619c54 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Wed Jul 28 00:09:08 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
+
+ * examples/IPC_SAP/SSL_SAP/SSL-server-fancy.cpp (handle_events):
+
+ Fixed "comparison of signed and unsigned values" warning
+ exhibited by CBuilderX.
+
Tue Jul 27 07:11:50 2004 J.T. Conklin <jtc@acorntoolworks.com>
* Reverted change:
diff --git a/examples/IPC_SAP/SSL_SAP/SSL-server-fancy.cpp b/examples/IPC_SAP/SSL_SAP/SSL-server-fancy.cpp
index 640ba6aca01..9d41b68c4f5 100644
--- a/examples/IPC_SAP/SSL_SAP/SSL-server-fancy.cpp
+++ b/examples/IPC_SAP/SSL_SAP/SSL-server-fancy.cpp
@@ -547,10 +547,8 @@ Handler_Factory::handle_events (void)
fd_set handles;
FD_ZERO (&handles);
- FD_SET ( (int) this->twoway_acceptor_.get_handle (),
- &handles);
- FD_SET ( (int) this->oneway_acceptor_.get_handle (),
- &handles);
+ FD_SET ((ACE_SOCKET) this->twoway_acceptor_.get_handle (), &handles);
+ FD_SET ((ACE_SOCKET) this->oneway_acceptor_.get_handle (), &handles);
// Performs the iterative server activities.