conf: clear lxc.syslog

parent 0b3c5838
...@@ -5033,6 +5033,9 @@ int lxc_clear_simple_config_item(struct lxc_conf *c, const char *key) ...@@ -5033,6 +5033,9 @@ int lxc_clear_simple_config_item(struct lxc_conf *c, const char *key)
c->pts = 0; c->pts = 0;
} else if (strcmp(key, "lxc.include") == 0) { } else if (strcmp(key, "lxc.include") == 0) {
lxc_clear_includes(c); lxc_clear_includes(c);
} else if (strcmp(key, "lxc.syslog") == 0) {
free(c->syslog);
c->syslog = NULL;
} else { } else {
return -1; return -1;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment