Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/drtimcooper/XmlRpc4Win.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUnderground78 <underground78@users.sourceforge.net>2016-01-09 13:26:50 +0300
committerUnderground78 <underground78@users.sourceforge.net>2016-01-14 23:53:50 +0300
commit553c533fbc6b2e66fe9b5ad362ea568e31390cdf (patch)
treed16b862c02d23f00a02e32052d7cd34a3224a436
parent0d42da505c83bfacad0e9ab2619e2ce0a825c126 (diff)
Remove duplicated conditional branch.
This was cosmetic only, it had no real side effect. Found with Coverity.
-rw-r--r--TimXmlRpc.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/TimXmlRpc.cpp b/TimXmlRpc.cpp
index a59cb58..dccbbe9 100644
--- a/TimXmlRpc.cpp
+++ b/TimXmlRpc.cpp
@@ -1415,8 +1415,6 @@ void XmlRpcImplementation::hadError(const char* function)
errmsg += "Talking HTTPS to an HTTP server?";
else if (LastError == ERROR_INTERNET_CANNOT_CONNECT)
errmsg += "Failed to connect";
- else if (LastError == ERROR_INTERNET_NAME_NOT_RESOLVED)
- errmsg += "Name not resolved";
else if (LastError == ERROR_INTERNET_INVALID_URL)
errmsg += "Invalid URL";
else if (LastError == ERROR_INTERNET_NAME_NOT_RESOLVED)