From d5d710a199644b91463fd02f9eece86841b5f03c Mon Sep 17 00:00:00 2001 From: Cao jin Date: Tue, 18 Aug 2015 20:38:07 +0800 Subject: [PATCH] virconf: fix the inconsistent name Fix inconsistency between function description and actual parameter name in virConfGetValue/virConfSetValue. Signed-off-by: Cao jin --- src/util/virconf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/virconf.c b/src/util/virconf.c index 01e5a6aa70..bbe1e9b2d8 100644 --- a/src/util/virconf.c +++ b/src/util/virconf.c @@ -840,7 +840,7 @@ virConfFree(virConfPtr conf) /** * virConfGetValue: * @conf: a configuration file handle - * @entry: the name of the entry + * @setting: the name of the entry * * Lookup the value associated to this entry in the configuration file * @@ -870,7 +870,7 @@ virConfGetValue(virConfPtr conf, const char *setting) /** * virConfSetValue: * @conf: a configuration file handle - * @entry: the name of the entry + * @setting: the name of the entry * @value: the new configuration value * * Set (or replace) the value associated to this entry in the configuration