summaryrefslogtreecommitdiff
path: root/methods/https.cc
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2008-08-06 14:01:29 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2008-08-06 14:01:29 +0200
commitcb714f283871f3deb9e0f8566ab6866ae9d7791e (patch)
tree85e812387cd35c5982405c6666ca65fddbdda27b /methods/https.cc
parentcbf217843cc8eaaebd6d798854d92aab961efd9d (diff)
parent496a05c628d39c981a8f472f16629043d8508808 (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/https.cc')
-rw-r--r--methods/https.cc2
1 files changed, 1 insertions, 1 deletions
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;
}