提交 15398e6a 编写于 作者: P Peter Krempa

log: Fix loading of conf file for log daemon

'log_outputs' would be read into the variable for log_filters
上级 e98b3090
......@@ -99,7 +99,7 @@ virLogDaemonConfigLoadOptions(virLogDaemonConfigPtr data,
return -1;
if (virConfGetValueString(conf, "log_filters", &data->log_filters) < 0)
return -1;
if (virConfGetValueString(conf, "log_outputs", &data->log_filters) < 0)
if (virConfGetValueString(conf, "log_outputs", &data->log_outputs) < 0)
return -1;
if (virConfGetValueUInt(conf, "max_clients", &data->max_clients) < 0)
return -1;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册