diff options
Diffstat (limited to 'discover/kboot-parser.c')
-rw-r--r-- | discover/kboot-parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discover/kboot-parser.c b/discover/kboot-parser.c index 025f13b..ab508ec 100644 --- a/discover/kboot-parser.c +++ b/discover/kboot-parser.c @@ -57,7 +57,7 @@ static void kboot_process_pair(struct conf_context *conf, const char *name, for (pos++; pos;) { char *cl_name, *cl_value; - pos = conf_get_param_pair(pos, &cl_name, &cl_value, ' '); + pos = conf_get_pair_equal(conf, pos, &cl_name, &cl_value, ' '); if (!cl_name) { args = talloc_asprintf_append(args, "%s ", cl_value); |