diff options
Diffstat (limited to 'methods/file.cc')
-rw-r--r-- | methods/file.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/methods/file.cc b/methods/file.cc index 6111329d5..269fb432d 100644 --- a/methods/file.cc +++ b/methods/file.cc @@ -33,7 +33,10 @@ class FileMethod : public aptMethod virtual bool Fetch(FetchItem *Itm) APT_OVERRIDE; public: - FileMethod() : aptMethod("file", "1.0", SingleInstance | SendConfig | LocalOnly) {}; + FileMethod() : aptMethod("file", "1.0", SingleInstance | SendConfig | LocalOnly) + { + SeccompFlags = aptMethod::BASE; + } }; // FileMethod::Fetch - Fetch a file /*{{{*/ |