Unverified Commit 0133efba by Christian Brauner Committed by Stéphane Graber

confile: config_init_gid()

parent f39b7976
......@@ -1091,6 +1091,9 @@ static int config_init_gid(const char *key, const char *value,
{
unsigned int init_gid;
if (config_value_empty(value))
return 0;
if (lxc_safe_uint(value, &init_gid) < 0)
return -1;
lxc_conf->init_gid = init_gid;
......
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