diff options
author | Marc Laukien <marc@zeroc.com> | 2005-02-21 23:05:59 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2005-02-21 23:05:59 +0000 |
commit | 273d16400b6b202ced285056644a969b9b8ed240 (patch) | |
tree | 34f9d4ef96bd1e61b59e195ddff9abf989dc1327 /cpp/src/IcePatch2/FileServerI.cpp | |
parent | /dev/urandom addition (diff) | |
download | ice-273d16400b6b202ced285056644a969b9b8ed240.tar.bz2 ice-273d16400b6b202ced285056644a969b9b8ed240.tar.xz ice-273d16400b6b202ced285056644a969b9b8ed240.zip |
fix
Diffstat (limited to 'cpp/src/IcePatch2/FileServerI.cpp')
-rw-r--r-- | cpp/src/IcePatch2/FileServerI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IcePatch2/FileServerI.cpp b/cpp/src/IcePatch2/FileServerI.cpp index 845eac2798f..f160c911070 100644 --- a/cpp/src/IcePatch2/FileServerI.cpp +++ b/cpp/src/IcePatch2/FileServerI.cpp @@ -79,7 +79,7 @@ IcePatch2::FileServerI::getFileCompressed(const string& pa, Int pos, Int num, co if(path.substr(slashPos + 1, endPos - slashPos - 1) == "..") { FileAccessException ex; - ex.reason = "Illegal .. component in path: `" + pa + "'"; + ex.reason = "illegal .. component in path: `" + pa + "'"; throw ex; } slashPos = endPos; |