diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2004-08-15 02:36:22 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2004-08-15 02:36:22 +0000 |
commit | e7962ed367cc492bacf3c6719eb730f7332c595a (patch) | |
tree | 62e84d579b655daa2e7930a805e68b6b82bfbfb2 | |
parent | a893eabe87e56413ec9edf4850978abfd153235d (diff) | |
download | ATCD-e7962ed367cc492bacf3c6719eb730f7332c595a.tar.gz |
ChangeLogTag:Sat Aug 14 19:34:02 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | ace/Sock_Connect.cpp | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index af3ef055a2a..d860cf12308 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Sat Aug 14 19:34:02 2004 Ossama Othman <ossama@dre.vanderbilt.edu> + + * ace/Sock_Connect.cpp (ipv6_enabled_): + + Fixed syntax error. + Sat Aug 14 13:07:50 2004 Ossama Othman <ossama@dre.vanderbilt.edu> * ace/QoS/SOCK_Dgram_Mcast_QoS.cpp (subscribe_ifs): diff --git a/ace/Sock_Connect.cpp b/ace/Sock_Connect.cpp index c037f9bea67..ee794a746fc 100644 --- a/ace/Sock_Connect.cpp +++ b/ace/Sock_Connect.cpp @@ -51,7 +51,7 @@ namespace ACE // Used internally so not exported. /// Does this box have ipv6 turned on? - int ipv6_enabled_-1; + int ipv6_enabled_ = -1; } #endif /* ACE_HAS_IPV6 */ |