diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2008-01-18 13:03:07 -0330 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2008-01-18 13:03:07 -0330 |
commit | e3b43ab7a7b0c58098d192e23ec1059461fa506c (patch) | |
tree | 7dd92e6cee71cb9a94e0e3b3124a8e7a7f54258d /cpp/src/Ice/UdpEndpointI.cpp | |
parent | Windows fixes for translator interrupt cleanup (diff) | |
download | ice-e3b43ab7a7b0c58098d192e23ec1059461fa506c.tar.bz2 ice-e3b43ab7a7b0c58098d192e23ec1059461fa506c.tar.xz ice-e3b43ab7a7b0c58098d192e23ec1059461fa506c.zip |
Fixed parsing issue with IPv6 addresses in UDP endpoint
Diffstat (limited to 'cpp/src/Ice/UdpEndpointI.cpp')
-rw-r--r-- | cpp/src/Ice/UdpEndpointI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/UdpEndpointI.cpp b/cpp/src/Ice/UdpEndpointI.cpp index 217f9625528..fd3af48e073 100644 --- a/cpp/src/Ice/UdpEndpointI.cpp +++ b/cpp/src/Ice/UdpEndpointI.cpp @@ -82,7 +82,7 @@ IceInternal::UdpEndpointI::UdpEndpointI(const InstancePtr& instance, const strin if(argumentBeg != string::npos && str[argumentBeg] != '-') { beg = argumentBeg; - end = str.find_first_of(delim + ":", beg); + end = str.find_first_of(delim, beg); if(end == string::npos) { end = str.length(); |