Skip to content

Commit

Permalink
Merge #1159
Browse files Browse the repository at this point in the history
1159: [sshfs] fix UID/GID mapping (Fixes #1157) r=ricab a=Saviq



Co-authored-by: Michał Sawicz <[email protected]>
  • Loading branch information
bors[bot] and Saviq committed Oct 30, 2019
1 parent e242836 commit a052e70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sshfs_mount/sshfs_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ int main(int argc, char* argv[])
const auto username = string(argv[3]);
const auto source_path = string(argv[4]);
const auto target_path = string(argv[5]);
const unordered_map<int, int> gid_map = deserialise_id_map(argv[6]);
const unordered_map<int, int> uid_map = deserialise_id_map(argv[7]);
const unordered_map<int, int> uid_map = deserialise_id_map(argv[6]);
const unordered_map<int, int> gid_map = deserialise_id_map(argv[7]);

auto logger = std::make_shared<mpl::StandardLogger>(mpl::Level::error); // QUESTION - how to pass verbosity level?
mpl::set_logger(logger);
Expand Down

0 comments on commit a052e70

Please sign in to comment.