summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README1
-rw-r--r--TAO/ChangeLog-99c6
-rw-r--r--TAO/orbsvcs/orbsvcs/AV/sfp.cpp2
3 files changed, 8 insertions, 1 deletions
diff --git a/README b/README
index 39b8d76a8d4..ac913fe6770 100644
--- a/README
+++ b/README
@@ -766,6 +766,7 @@ Tad Jarosinski <tadj@qualcomm.com>
Andy Marchewka <AndyM@who.net>
Neal Norwitz <nnorwitz@arinc.com>
Frederic Maria <fmaria@lucent.com>
+David Hooker <DHooker@uniview.net>
I would particularly like to thank Paul Stephenson, who worked with me
at Ericsson and is now at ObjectSpace. Paul devised the recursive
diff --git a/TAO/ChangeLog-99c b/TAO/ChangeLog-99c
index 82060bc62c7..7fc8debebe4 100644
--- a/TAO/ChangeLog-99c
+++ b/TAO/ChangeLog-99c
@@ -1,3 +1,9 @@
+Mon Mar 1 17:31:57 1999 Nagarajan Surendran <naga@cs.wustl.edu>
+
+ * orbsvcs/orbsvcs/AV/sfp.cpp: Added the flowProtocol:: class
+ specifier for frameHeader so that it compiles on win32. Thanks to
+ David Hooker <DHooker@uniview.net> for the fix.
+
Mon Mar 01 17:19:04 1999 David L. Levine <levine@cs.wustl.edu>
* TAO version 0.3.8 released.
diff --git a/TAO/orbsvcs/orbsvcs/AV/sfp.cpp b/TAO/orbsvcs/orbsvcs/AV/sfp.cpp
index 4e1e3d21413..e76f24f87b7 100644
--- a/TAO/orbsvcs/orbsvcs/AV/sfp.cpp
+++ b/TAO/orbsvcs/orbsvcs/AV/sfp.cpp
@@ -308,7 +308,7 @@ SFP::send_frame (ACE_Message_Block *frame)
frame_header.magic_number [3] = ACE_HTONS ('P');
// sizeof (frameHeader) may have to be replaced with more
// accurate size??.
- if (total_length > (ACE_MAX_DGRAM_SIZE- sizeof (frameHeader)))
+ if (total_length > (ACE_MAX_DGRAM_SIZE- sizeof (flowProtocol::frameHeader)))
{
// If the message size is not okay including the headers i.e it
// cannot fit in a dgram.