summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Cleeland <chris.cleeland@gmail.com>1997-04-09 21:20:42 +0000
committerChris Cleeland <chris.cleeland@gmail.com>1997-04-09 21:20:42 +0000
commit18e674e6bab51409d45bb4aae99a5bd6e5767410 (patch)
tree6e8ace3779cc59a8a55f7d09d51d6c95dcbe957d
parent14df07daf3a081e2bc426b208a8ea92584adff53 (diff)
downloadATCD-18e674e6bab51409d45bb4aae99a5bd6e5767410.tar.gz
Minor fixes to compile on Sun.
-rw-r--r--TAO/ChangeLog-98c6
-rw-r--r--TAO/IIOP/lib/tcpoa.cpp4
2 files changed, 10 insertions, 0 deletions
diff --git a/TAO/ChangeLog-98c b/TAO/ChangeLog-98c
index 6ab08f343a1..b6df0d1048a 100644
--- a/TAO/ChangeLog-98c
+++ b/TAO/ChangeLog-98c
@@ -1,3 +1,9 @@
+Wed Apr 9 16:19:21 1997 Chris Cleeland <cleeland@tango.cs.wustl.edu>
+
+ * tcpoa.cpp: Fixed a problem that G++ didn't notice regarding
+ changing the notion of endpoints in servers from server_endpoint
+ to an ACE_HANDLE.
+
Wed Apr 9 15:43:37 1997 Chris Cleeland <cleeland@cs.wustl.edu>
* svr.cpp: The -p option is gone, and -e takes its place and is
diff --git a/TAO/IIOP/lib/tcpoa.cpp b/TAO/IIOP/lib/tcpoa.cpp
index 62e8b607365..d18f79569a8 100644
--- a/TAO/IIOP/lib/tcpoa.cpp
+++ b/TAO/IIOP/lib/tcpoa.cpp
@@ -714,7 +714,9 @@ TCP_OA::get_request (
ctx->check_forward = check_forward;
ctx->context = app_state;
ctx->oa = this;
+#if 0 // g++ didn't complain about this, but Sun C++ does
ctx->endpoint = fd;
+#endif
ctx->aggressive = do_thr_create;
//
@@ -758,7 +760,9 @@ TCP_OA::get_request (
ctx.check_forward = check_forward;
ctx.context = app_state;
ctx.oa = this;
+#if 0 // g++ didn't complain about this assignment, but Sun C++ does
ctx.endpoint = fd;
+#endif
#ifdef _POSIX_THREADS
ctx.aggressive = CORBA_B_FALSE;