diff options
author | Pixel <pixel@nobis-crew.org> | 2008-10-07 10:00:21 -0700 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2008-10-07 10:00:21 -0700 |
commit | 58742cde51f692c8b95b92da16f4f1e2b2e7d006 (patch) | |
tree | 7436ec1ef53237f521e27a8c814c07036bf3c336 /lib | |
parent | 5c890b42ae70f211e40f7d1d5d877ecb62b511df (diff) |
Fixing a few warnings.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/HttpServ.cc | 1 | ||||
-rw-r--r-- | lib/MailClient.cc | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/lib/HttpServ.cc b/lib/HttpServ.cc index b67f5f3..ec320bc 100644 --- a/lib/HttpServ.cc +++ b/lib/HttpServ.cc @@ -951,4 +951,5 @@ String HttpResponse::code_to_string() { case HTTP_503_SERVICE_UNAVAILABLE: return "Service Unavailable"; } + return "Unknown return code " + String(return_code); } diff --git a/lib/MailClient.cc b/lib/MailClient.cc index 50e06c8..6ae1a73 100644 --- a/lib/MailClient.cc +++ b/lib/MailClient.cc @@ -147,7 +147,6 @@ String MailClient::getNext() { } int MailClient::Do() throw (GeneralException) { - int code; std::vector<String>::iterator i; String n; |