mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-02 01:45:17 +00:00
log: Fix loading of conf file for log daemon
'log_outputs' would be read into the variable for log_filters
This commit is contained in:
parent
e98b30909b
commit
15398e6a4c
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user