diff options
author | Marc Laukien <marc@zeroc.com> | 2002-04-03 22:52:39 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-04-03 22:52:39 +0000 |
commit | 96d03c0016f3fb063c77007480171a7785c51c24 (patch) | |
tree | 5c604c07665e48603602da6bc260a53316629e43 /cpp/src/Ice/IdentityUtil.cpp | |
parent | started with IcePatch (diff) | |
download | ice-96d03c0016f3fb063c77007480171a7785c51c24.tar.bz2 ice-96d03c0016f3fb063c77007480171a7785c51c24.tar.xz ice-96d03c0016f3fb063c77007480171a7785c51c24.zip |
more IcePatch work
Diffstat (limited to 'cpp/src/Ice/IdentityUtil.cpp')
-rw-r--r-- | cpp/src/Ice/IdentityUtil.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/IdentityUtil.cpp b/cpp/src/Ice/IdentityUtil.cpp index 6aab2c6a005..4dba3a78841 100644 --- a/cpp/src/Ice/IdentityUtil.cpp +++ b/cpp/src/Ice/IdentityUtil.cpp @@ -24,7 +24,7 @@ Identity Ice::stringToIdentity(const string& s) { Identity ident; - string::size_type pos = s.find_first_of("#/"); + string::size_type pos = s.find_first_of("/"); if (pos != string::npos) { ident.category = s.substr(0, pos); |