summaryrefslogtreecommitdiff
path: root/src/libcephfs.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcephfs.cc')
-rw-r--r--src/libcephfs.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libcephfs.cc b/src/libcephfs.cc
index 97a51aec3c6..5f346703878 100644
--- a/src/libcephfs.cc
+++ b/src/libcephfs.cc
@@ -1374,11 +1374,10 @@ extern "C" int ceph_ll_statfs(class ceph_mount_info *cmount,
}
extern "C" int ceph_ll_readlink(class ceph_mount_info *cmount,
- Inode *in, char **value, int uid,
+ Inode *in, char *buf, size_t bufsiz, int uid,
int gid)
{
- return (cmount->get_client()->ll_readlink(in, (const char**) value,
- uid, gid));
+ return (cmount->get_client()->ll_readlink(in, buf, bufsiz, uid, gid));
}
extern "C" int ceph_ll_symlink(class ceph_mount_info *cmount,