diff options
author | Julian Andres Klode <jak@debian.org> | 2017-10-22 20:25:50 +0200 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2017-10-22 20:25:50 +0200 |
commit | 8616c21628c8bff9174a912ca5814e469d49e7cb (patch) | |
tree | d7090310fb0fa62a826962cec80a48934e3f0fc7 /methods/mirror.cc | |
parent | 0934b6b023b46cd0e2e5fa55a23a054b2feeb618 (diff) |
methods/mirror: Enable sandboxing and other aptMethod features
Sandboxing was turned off because we called pkgAcqMethod's
Configuration() instead of aptMethod's.
Diffstat (limited to 'methods/mirror.cc')
-rw-r--r-- | methods/mirror.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/methods/mirror.cc b/methods/mirror.cc index b0da5c530..b551802e4 100644 --- a/methods/mirror.cc +++ b/methods/mirror.cc @@ -69,7 +69,7 @@ MirrorMethod::MirrorMethod() /* We stash the desired pipeline depth */ bool MirrorMethod::Configuration(string Message) { - if (pkgAcqMethod::Configuration(Message) == false) + if (HttpMethod::Configuration(Message) == false) return false; Debug = DebugEnabled(); |