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

confile: config_kmsg()

parent baae4c57
......@@ -1334,11 +1334,15 @@ static int config_ttydir(const char *key, const char *value,
}
static int config_kmsg(const char *key, const char *value,
struct lxc_conf *lxc_conf)
struct lxc_conf *lxc_conf)
{
if (config_value_empty(value))
/* Set config value to default. */
if (config_value_empty(value)) {
lxc_conf->kmsg = 0;
return 0;
}
/* Parse new config value. */
if (lxc_safe_uint(value, &lxc_conf->kmsg) < 0)
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