From: Michael Tremer Date: Tue, 24 May 2022 15:54:08 +0000 (+0000) Subject: mount: Don't mess with the helpers X-Git-Tag: 0.9.28~760 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7bc29acdab43c413d00c07fd26a41977edadb8a2;p=pakfire.git mount: Don't mess with the helpers For some reason, this umounts practically everything on my Debian box. Signed-off-by: Michael Tremer --- diff --git a/src/libpakfire/mount.c b/src/libpakfire/mount.c index d7e1e0e8d..a1ee7b875 100644 --- a/src/libpakfire/mount.c +++ b/src/libpakfire/mount.c @@ -173,13 +173,6 @@ int pakfire_mount(struct pakfire* pakfire, const char* source, const char* targe if (!ctx) return 1; - // Disable any mount helpers - r = mnt_context_disable_helpers(ctx, 1); - if (r) { - ERROR(pakfire, "Could not disable mount helpers: %m\n"); - goto ERROR; - } - // Set source r = mnt_context_set_source(ctx, source); if (r) {