diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2008-08-06 14:01:29 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2008-08-06 14:01:29 +0200 |
commit | cb714f283871f3deb9e0f8566ab6866ae9d7791e (patch) | |
tree | 85e812387cd35c5982405c6666ca65fddbdda27b /methods | |
parent | cbf217843cc8eaaebd6d798854d92aab961efd9d (diff) | |
parent | 496a05c628d39c981a8f472f16629043d8508808 (diff) |
* fix various -Wall warnings
* make "apt-get build-dep" installed packages marked automatic
by default. This can be changed by setting the value of
APT::Get::Build-Dep-Automatic to false (thanks to Aaron
Haviland, closes: #44874, LP: #248268)
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 61321c850..b0fb89fda 100644 --- a/methods/http.cc +++ b/methods/http.cc @@ -943,7 +943,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; } |