summaryrefslogtreecommitdiff
path: root/cpp/src/IcePatch2/FileServerI.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2005-02-21 23:10:04 +0000
committerMarc Laukien <marc@zeroc.com>2005-02-21 23:10:04 +0000
commitc95307de7f20435fdb8e7fbfd27b72f695bf95d2 (patch)
treea31d5c0ece3eda861bcccdc6edf202f42713c15e /cpp/src/IcePatch2/FileServerI.cpp
parentfixing BerkeleyDB version (diff)
downloadice-c95307de7f20435fdb8e7fbfd27b72f695bf95d2.tar.bz2
ice-c95307de7f20435fdb8e7fbfd27b72f695bf95d2.tar.xz
ice-c95307de7f20435fdb8e7fbfd27b72f695bf95d2.zip
fix
Diffstat (limited to 'cpp/src/IcePatch2/FileServerI.cpp')
-rw-r--r--cpp/src/IcePatch2/FileServerI.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IcePatch2/FileServerI.cpp b/cpp/src/IcePatch2/FileServerI.cpp
index f160c911070..dd74151ce84 100644
--- a/cpp/src/IcePatch2/FileServerI.cpp
+++ b/cpp/src/IcePatch2/FileServerI.cpp
@@ -65,7 +65,7 @@ IcePatch2::FileServerI::getFileCompressed(const string& pa, Int pos, Int num, co
if(isAbsolute(pa))
{
FileAccessException ex;
- ex.reason = "Illegal absolute path: `" + pa + "'";
+ ex.reason = "illegal absolute path `" + pa + "'";
throw ex;
}
@@ -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;