From 4b9523f7e1ee4a6c3112d0bb2e7bf66b76cadbe2 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Tue, 28 Apr 2015 16:17:03 -0700 Subject: [PATCH] os/fs: fix open_handle when name_to_handle not present Signed-off-by: Sage Weil --- src/os/fs/FS.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/os/fs/FS.cc b/src/os/fs/FS.cc index 03c9a11835e..c7412d65704 100644 --- a/src/os/fs/FS.cc +++ b/src/os/fs/FS.cc @@ -95,7 +95,7 @@ int FS::get_handle(int fd, std::string *h) return -EOPNOTSUPP; } -int FS::open_handle(int mount_fd, const std::string& h) +int FS::open_handle(int mount_fd, const std::string& h, int flags) { return -EOPNOTSUPP; } -- 2.47.3