diff options
Diffstat (limited to '')
-rw-r--r-- | g13/be-encfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g13/be-encfs.c b/g13/be-encfs.c index 06e8792b3..250084a48 100644 --- a/g13/be-encfs.c +++ b/g13/be-encfs.c @@ -73,7 +73,7 @@ static void run_umount_helper (const char *mountpoint) { gpg_error_t err; - const char pgmname[] = "/usr/bin/fusermount"; + const char pgmname[] = FUSERMOUNT; const char *args[3]; args[0] = "-u"; @@ -254,7 +254,7 @@ run_encfs_tool (ctrl_t ctrl, enum encfs_cmds cmd, goto leave; } - pgmname = "/usr/bin/encfs"; + pgmname = ENCFS; idx = 0; argv[idx++] = "-f"; if (opt.verbose) |