summaryrefslogtreecommitdiff
path: root/methods
diff options
context:
space:
mode:
authorEugene V. Lyubimkin <jackyf@1501-debian>2008-11-07 23:59:28 +0200
committerEugene V. Lyubimkin <jackyf@1501-debian>2008-11-07 23:59:28 +0200
commit8669a82ef889bdb947d62ab3ff11f27d70a9d2d6 (patch)
tree45401aef2b4e7e9bd0930640727af2c82f575c50 /methods
parent425684e05521bba07b03dc2c5e647908ce757141 (diff)
parentf03edb29dfcc1ece0dd4161705830274bf0f7739 (diff)
Merged from debian-sid.
Diffstat (limited to 'methods')
-rw-r--r--methods/http.cc3
-rw-r--r--methods/https.cc2
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;
}