From 3add45074119c6e3e9fe81f13c8b2fbb4fb51819 Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Mon, 28 Jun 2021 11:20:35 -0400 Subject: [PATCH] cephfs: fix function doc comment for ReadDefaultConfigFile Signed-off-by: John Mulligan --- cephfs/cephfs.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cephfs/cephfs.go b/cephfs/cephfs.go index b90f894..6cfbaf1 100644 --- a/cephfs/cephfs.go +++ b/cephfs/cephfs.go @@ -64,7 +64,10 @@ func CreateFromRados(conn *rados.Conn) (*MountInfo, error) { return mount, nil } -// ReadDefaultConfigFile loads the ceph configuration from the specified config file. +// ReadDefaultConfigFile loads the ceph configuration from the default config file. +// +// Implements: +// int ceph_conf_read_file(struct ceph_mount_info *cmount, const char *path_list); func (mount *MountInfo) ReadDefaultConfigFile() error { ret := C.ceph_conf_read_file(mount.mount, nil) return getError(ret)