File: fix-umount-path.patch

package info (click to toggle)
ruby-fusefs 0.7.0-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 372 kB
  • sloc: ansic: 1,141; ruby: 760; sh: 10; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 474 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Description: Fix hardcoded umount path
Author: Athos Ribeiro <athos@debian.org>
Forwarded: no
Last-Update: 2025-11-04
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/ext/fusefs_fuse.c
+++ b/ext/fusefs_fuse.c
@@ -38,7 +38,7 @@
 
   if (mounted_at && fusech) {
     fuse_unmount(mounted_at, fusech);
-    sprintf(buf, "/sbin/umount %s", mounted_at);
+    sprintf(buf, "/usr/bin/umount %s", mounted_at);
     system(buf);
   }
   if (fuse_instance)