Skip to content

Commit

Permalink
Remove deprecated lite format codes
Browse files Browse the repository at this point in the history
  • Loading branch information
netheril96 committed Mar 10, 2024
1 parent 0a6100c commit 29bbec7
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 1,505 deletions.
10 changes: 1 addition & 9 deletions sources/commands.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
#include "fuse_high_level_ops_base.h"
#include "git-version.h"
#include "lite_format.h"
#include "lite_operations.h"
#include "lock_enabled.h"
#include "logger.h"
#include "myutils.h"
Expand Down Expand Up @@ -1531,14 +1530,7 @@ class MountCommand : public _SinglePasswordCommandBase
#endif

struct fuse_operations operations;
if (config.version <= 3)
{
operations::init_fuse_operations(&operations, native_xattr);
}
else
{
lite::init_fuse_operations(&operations, native_xattr);
}
operations::init_fuse_operations(&operations, native_xattr);
VERBOSE_LOG("Calling fuse_main with arguments: %s", escape_args(fuse_args));
recreate_logger();
return fuse_main(static_cast<int>(fuse_args.size()),
Expand Down
Loading

0 comments on commit 29bbec7

Please sign in to comment.