diff options
-rw-r--r-- | methods/cdrom.cc | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/methods/cdrom.cc b/methods/cdrom.cc index 8b7587fe5..3900e3e64 100644 --- a/methods/cdrom.cc +++ b/methods/cdrom.cc @@ -46,7 +46,8 @@ class CDROMMethod : public aptMethod virtual bool Fetch(FetchItem *Itm) APT_OVERRIDE; string GetID(string Name); virtual void Exit() APT_OVERRIDE; - + virtual bool Configuration(std::string Message) APT_OVERRIDE; + public: CDROMMethod(); @@ -277,9 +278,14 @@ bool CDROMMethod::Fetch(FetchItem *Itm) return true; } /*}}}*/ +bool CDROMMethod::Configuration(std::string Message) /*{{{*/ +{ + _config->CndSet("Binary::cdrom::Debug::NoDropPrivs", true); + return aptMethod::Configuration(Message); +} + /*}}}*/ int main() { - _config->CndSet("Binary::cdrom::Debug::NoDropPrivs", true); return CDROMMethod().Run(); } |