Unverified Commit ef821d5a by Christian Brauner Committed by Stéphane Graber

confile: config_includefile()

parent c98dd7bc
...@@ -1918,6 +1918,9 @@ out: ...@@ -1918,6 +1918,9 @@ out:
static int config_includefile(const char *key, const char *value, static int config_includefile(const char *key, const char *value,
struct lxc_conf *lxc_conf) struct lxc_conf *lxc_conf)
{ {
if (config_value_empty(value))
return 0;
if (is_dir(value)) if (is_dir(value))
return do_includedir(value, lxc_conf); return do_includedir(value, lxc_conf);
......
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