From 2cf4a2e08752d444e570b59b7647d47eb00b2842 Mon Sep 17 00:00:00 2001 From: Francis Banyikwa Date: Wed, 1 Jun 2016 11:55:48 +0300 Subject: [PATCH] use project name as the first argument to fuse --- src/fspp/fuse/Fuse.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fspp/fuse/Fuse.cpp b/src/fspp/fuse/Fuse.cpp index 7499dbc7..2af4d605 100644 --- a/src/fspp/fuse/Fuse.cpp +++ b/src/fspp/fuse/Fuse.cpp @@ -235,7 +235,7 @@ void Fuse::run(const bf::path &mountdir, const vector &fuseOptions) { ASSERT(_argv.size() == 0, "Filesystem already started"); _argv.reserve(2 + fuseOptions.size()); - _argv.push_back(_create_c_string("fspp")); // The first argument is the executable name + _argv.push_back(_create_c_string("cryfs")); // The first argument is the executable name _argv.push_back(_create_c_string(mountdir.native())); // The second argument is the mountdir for (const string &option : fuseOptions) { _argv.push_back(_create_c_string(option));