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));