You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2013/12/05 23:11:31 UTC

svn commit: r1548317 - /qpid/trunk/qpid/cpp/src/qpid/sys/windows/Path.cpp

Author: aconway
Date: Thu Dec  5 22:11:31 2013
New Revision: 1548317

URL: http://svn.apache.org/r1548317
Log:
QPID-5398: Minor improvement to log message.

Modified:
    qpid/trunk/qpid/cpp/src/qpid/sys/windows/Path.cpp

Modified: qpid/trunk/qpid/cpp/src/qpid/sys/windows/Path.cpp
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/qpid/sys/windows/Path.cpp?rev=1548317&r1=1548316&r2=1548317&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/src/qpid/sys/windows/Path.cpp (original)
+++ qpid/trunk/qpid/cpp/src/qpid/sys/windows/Path.cpp Thu Dec  5 22:11:31 2013
@@ -38,7 +38,7 @@ namespace {
 bool getStat(const std::string& path, struct _stat& s) {
     if (::_stat(path.c_str(), &s)) {
         if (errno == ENOENT) return false;
-        throw qpid::Exception (strError(errno) + ": Invalid path: " + path);
+        throw qpid::Exception("cannot stat: " + path + ": " + strError(errno))
     }
     return true;
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org