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

confile: config_fstab()

parent a4fcc23d
...@@ -1572,8 +1572,9 @@ out: ...@@ -1572,8 +1572,9 @@ out:
static int config_fstab(const char *key, const char *value, static int config_fstab(const char *key, const char *value,
struct lxc_conf *lxc_conf) struct lxc_conf *lxc_conf)
{ {
if (!value || strlen(value) == 0) if (config_value_empty(value))
return -1; return -1;
return config_path_item(&lxc_conf->fstab, value); return config_path_item(&lxc_conf->fstab, value);
} }
......
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