summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsma <sma@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2013-05-21 11:13:07 +0000
committersma <sma@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2013-05-21 11:13:07 +0000
commitbceae42e8e248c82de505b417bba4a1e81f981ba (patch)
tree4e4d3d4af90bb26196405a94a5b17b8e23b0d4f1
parent7fb7910e592e12cd62cc4e0ff6187036f8294805 (diff)
downloadATCD-bceae42e8e248c82de505b417bba4a1e81f981ba.tar.gz
Tue May 21 11:07:00 UTC 2013 Simon Massey <simon dot massey at prismtech dot com> Add sanity check for SndSock value obtained from system
-rw-r--r--TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Connection_Handler.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Connection_Handler.cpp b/TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Connection_Handler.cpp
index d97a8b2a3cc..55be06a50ec 100644
--- a/TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Connection_Handler.cpp
+++ b/TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Connection_Handler.cpp
@@ -1,4 +1,4 @@
-// $Id$
+ // $Id$
#include "orbsvcs/Log_Macros.h"
#include "orbsvcs/PortableGroup/UIPMC_Connection_Handler.h"
@@ -278,8 +278,8 @@ TAO_UIPMC_Connection_Handler::open (void*)
// Also Note that some kernals return stupid values (such as solaris
// when using the loopback interface) so cater for rediculously small
// values.
- if (this->send_hi_water_mark_ < 256u)
- {
+ if (this->send_hi_water_mark_ < 256u)
+ {
this->send_hi_water_mark_ = 256u;
if (TAO_debug_level)
ACE_ERROR ((LM_ERROR,