Commit 1e11be34 by Daniel Lezcano

fix tab vs space indentation

parent 81810dd1
...@@ -121,11 +121,11 @@ static struct mount_opt mount_opt[] = { ...@@ -121,11 +121,11 @@ static struct mount_opt mount_opt[] = {
}; };
static struct caps_opt caps_opt[] = { static struct caps_opt caps_opt[] = {
{ "chown", CAP_CHOWN }, { "chown", CAP_CHOWN },
{ "dac_override", CAP_DAC_OVERRIDE }, { "dac_override", CAP_DAC_OVERRIDE },
{ "dac_read_search", CAP_DAC_READ_SEARCH }, { "dac_read_search", CAP_DAC_READ_SEARCH },
{ "fowner", CAP_FOWNER }, { "fowner", CAP_FOWNER },
{ "fsetid", CAP_FSETID }, { "fsetid", CAP_FSETID },
{ "kill", CAP_KILL }, { "kill", CAP_KILL },
{ "setgid", CAP_SETGID }, { "setgid", CAP_SETGID },
{ "setuid", CAP_SETUID }, { "setuid", CAP_SETUID },
...@@ -155,7 +155,6 @@ static struct caps_opt caps_opt[] = { ...@@ -155,7 +155,6 @@ static struct caps_opt caps_opt[] = {
{ "setfcap", CAP_SETFCAP }, { "setfcap", CAP_SETFCAP },
{ "mac_override", CAP_MAC_OVERRIDE }, { "mac_override", CAP_MAC_OVERRIDE },
{ "mac_admin", CAP_MAC_ADMIN }, { "mac_admin", CAP_MAC_ADMIN },
{ NULL, 0, },
}; };
...@@ -858,8 +857,8 @@ static int setup_caps(struct lxc_list *caps) ...@@ -858,8 +857,8 @@ static int setup_caps(struct lxc_list *caps)
} }
if (capid < 0) { if (capid < 0) {
ERROR("unknown capability %s", drop_entry); ERROR("unknown capability %s", drop_entry);
return -1; return -1;
} }
DEBUG("drop capability '%s' (%d)", drop_entry, capid); DEBUG("drop capability '%s' (%d)", drop_entry, capid);
......
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