From: Christian Brauner Date: Wed, 31 May 2017 12:56:53 +0000 (+0200) Subject: confile: add clearer for lxc.tty X-Git-Tag: lxc-2.1.0~110^2~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e7a4b0963235429c72c14525366a8566cf214883;p=thirdparty%2Flxc.git confile: add clearer for lxc.tty Signed-off-by: Christian Brauner --- diff --git a/src/lxc/confile.c b/src/lxc/confile.c index 267a9506c..275a3aa02 100644 --- a/src/lxc/confile.c +++ b/src/lxc/confile.c @@ -73,6 +73,7 @@ static int clr_config_pts(const char *, struct lxc_conf *); static int set_config_tty(const char *, const char *, struct lxc_conf *); static int get_config_tty(const char *, char *, int, struct lxc_conf *); +static int clr_config_tty(const char *, struct lxc_conf *); static int set_config_ttydir(const char *, const char *, struct lxc_conf *); static int get_config_ttydir(const char *, char *, int, struct lxc_conf *); @@ -217,7 +218,7 @@ static int get_config_limit(const char *, char *, int, struct lxc_conf *); static struct lxc_config_t config[] = { { "lxc.arch", set_config_personality, get_config_personality, clr_config_personality, }, { "lxc.pts", set_config_pts, get_config_pts, clr_config_pts, }, - { "lxc.tty", set_config_tty, get_config_tty, NULL }, + { "lxc.tty", set_config_tty, get_config_tty, clr_config_tty, }, { "lxc.devttydir", set_config_ttydir, get_config_ttydir, NULL }, { "lxc.kmsg", set_config_kmsg, get_config_kmsg, NULL }, { "lxc.aa_profile", set_config_lsm_aa_profile, get_config_lsm_aa_profile, NULL }, @@ -2802,9 +2803,6 @@ int lxc_clear_config_item(struct lxc_conf *c, const char *key) free(c->console.path); c->console.path = NULL; - } else if (strcmp(key, "lxc.tty") == 0) { - c->tty = 0; - } else if (strcmp(key, "lxc.devttydir") == 0) { free(c->ttydir); c->ttydir = NULL; @@ -4088,3 +4086,9 @@ static inline int clr_config_pts(const char *key, struct lxc_conf *c) c->pts = 0; return 0; } + +static inline int clr_config_tty(const char *key, struct lxc_conf *c) +{ + c->tty = 0; + return 0; +}