From 7be0433107b41525da164f79fd0a410a38f812c7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?St=C3=A9phane=20Graber?= Date: Wed, 7 Aug 2024 14:10:59 -0400 Subject: [PATCH] doc: Fix definitions of get_config_path and set_config_path MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Graber --- src/lxc/lxccontainer.h | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/lxc/lxccontainer.h b/src/lxc/lxccontainer.h index 4c06183c9..2d90fe8d8 100644 --- a/src/lxc/lxccontainer.h +++ b/src/lxc/lxccontainer.h @@ -496,7 +496,7 @@ struct lxc_container { bool (*set_cgroup_item)(struct lxc_container *c, const char *subsys, const char *value); /*! - * \brief Determine full path to the containers configuration file. + * \brief Determine full path to the containers configuration directory. * Each container can have a custom configuration path. However * by default it will be set to either the \c LXCPATH configure * variable, or the lxcpath value in the \c LXC_GLOBAL_CONF configuration @@ -506,19 +506,17 @@ struct lxc_container { * * \param c Container. * - * \return Static string representing full path to configuration - * file. + * \return Static string representing full path to configuration directory. * * \note Returned string must not be freed. */ const char *(*get_config_path)(struct lxc_container *c); /*! - * \brief Set the full path to the containers configuration - * file. + * \brief Set the full path to the containers configuration directory. * * \param c Container. - * \param path Full path to configuration file. + * \param path Full path to configuration directory. * * \return \c true on success, else \c false. */ -- 2.47.2