diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2007-07-10 15:06:12 -0300 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2007-07-10 15:06:12 -0300 |
commit | 21fd1746e37e695f569121c0b6489770ec6a8b0e (patch) | |
tree | be77be5c85d4e30202aa43ef2fd657da9fabf7fd /methods/https.h | |
parent | ec5e7f30f3bd98749c4b11b4edd64bbb89c4dc15 (diff) |
* Fix compilation warnings:
- apt-pkg/contrib/configuration.cc: wrong argument type;
- apt-pkg/deb/dpkgpm.cc: wrong signess;
- apt-pkg-acquire-item.cc: wrong signess and orderned initializers;
- methods/https.cc:
- type conversion;
- unused variable;
- changed SetupProxy() method to void;
Diffstat (limited to 'methods/https.h')
-rw-r--r-- | methods/https.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/methods/https.h b/methods/https.h index 6620a10fc..638c18193 100644 --- a/methods/https.h +++ b/methods/https.h @@ -29,7 +29,7 @@ class HttpsMethod : public pkgAcqMethod static size_t write_data(void *buffer, size_t size, size_t nmemb, void *userp); static int progress_callback(void *clientp, double dltotal, double dlnow, double ultotal, double ulnow); - bool SetupProxy(); + void SetupProxy(); CURL *curl; FetchResult Res; |