diff options
author | Michael Vogt <mvo@debian.org> | 2008-10-28 18:14:29 +0100 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2008-10-28 18:14:29 +0100 |
commit | 3c8cda8b05d6eeaef76c7ccc673fe378b0c74f37 (patch) | |
tree | 3b77f2863a7fb6042d159eef95f17cff4016cbdf /methods | |
parent | d210bd7f6a72a2b24a1402f51b39c61438482827 (diff) |
fix various -Wall warnings
Diffstat (limited to 'methods')
-rw-r--r-- | methods/http.cc | 3 | ||||
-rw-r--r-- | methods/https.cc | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/methods/http.cc b/methods/http.cc index 26d435dea..b3c791fa0 100644 --- a/methods/http.cc +++ b/methods/http.cc @@ -941,7 +941,8 @@ int HttpMethod::DealWithHeaders(FetchResult &Res,ServerState *Srv) if (Srv->StartPos >= 0) { Res.ResumePoint = Srv->StartPos; - ftruncate(File->Fd(),Srv->StartPos); + if (ftruncate(File->Fd(),Srv->StartPos) < 0) + _error->Errno("ftruncate", _("Failed to truncate file")); } // Set the start point diff --git a/methods/https.cc b/methods/https.cc index e53ba1a11..98dfeefa1 100644 --- a/methods/https.cc +++ b/methods/https.cc @@ -249,7 +249,7 @@ bool HttpsMethod::Fetch(FetchItem *Itm) if(success != 0) { unlink(File->Name().c_str()); - _error->Error(curl_errorstr); + _error->Error("%s", curl_errorstr); Fail(); return true; } |