From 3aea1a764305bc8ce32aa1e33254e42186a9d171 Mon Sep 17 00:00:00 2001 From: Christian Brauner Date: Fri, 11 Aug 2017 00:13:25 +0200 Subject: [PATCH] confile: non-functional changes Signed-off-by: Christian Brauner --- src/lxc/confile.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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; -- 2.47.3