summaryrefslogtreecommitdiffstats
path: root/src/Common/Exception.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Common/Exception.cpp')
-rw-r--r--src/Common/Exception.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Common/Exception.cpp b/src/Common/Exception.cpp
index dc04f7d..9366fe7 100644
--- a/src/Common/Exception.cpp
+++ b/src/Common/Exception.cpp
@@ -43,7 +43,7 @@ std::string Exception::strerror() const {
case NOT_FINISHED:
return ret + "Not finished";
case INTERNAL_ERRNO:
- return ret + "Internal error: " + std::strerror(subCode);
+ return ret + std::strerror(subCode);
case INTERNAL_GNUTLS:
return ret + "GnuTLS error: " + gnutls_strerror(subCode);
case INVALID_ADDRESS: