From: Christian Brauner Date: Thu, 10 Aug 2017 22:13:25 +0000 (+0200) Subject: confile: non-functional changes X-Git-Tag: lxc-2.1.0~23^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3aea1a764305bc8ce32aa1e33254e42186a9d171;p=thirdparty%2Flxc.git confile: non-functional changes Signed-off-by: Christian Brauner --- diff --git a/src/lxc/confile.h b/src/lxc/confile.h index a5c2e36bf..191676ffb 100644 --- a/src/lxc/confile.h +++ b/src/lxc/confile.h @@ -33,11 +33,12 @@ struct lxc_conf; struct lxc_list; -typedef int (*config_set_cb)(const char *, const char *, struct lxc_conf *, +typedef int (*config_set_cb)(const char *key, const char *value, + struct lxc_conf *conf, void *data); +typedef int (*config_get_cb)(const char *key, char *value, int inlen, + struct lxc_conf *conf, void *data); +typedef int (*config_clr_cb)(const char *key, struct lxc_conf *conf, void *data); -typedef int (*config_get_cb)(const char *, char *, int, struct lxc_conf *, - void *); -typedef int (*config_clr_cb)(const char *, struct lxc_conf *c, void *data); struct lxc_config_t { char *name;