confile: non-functional changes

parent ed07dfa9
...@@ -68,14 +68,12 @@ ...@@ -68,14 +68,12 @@
lxc_log_define(lxc_confile, lxc); lxc_log_define(lxc_confile, lxc);
#define lxc_config_define(name) \ #define lxc_config_define(name) \
static int set_config_##name(const char *, const char *, \ static int set_config_##name(const char *, const char *, \
struct lxc_conf *, void *); \ struct lxc_conf *, void *); \
static int get_config_##name(const char *, char *, int, \ static int get_config_##name(const char *, char *, int, \
struct lxc_conf *, void *); \ struct lxc_conf *, void *); \
static int clr_config_##name(const char *, struct lxc_conf *, \ static int clr_config_##name(const char *, struct lxc_conf *, void *);
void *);
lxc_config_define(personality); lxc_config_define(personality);
lxc_config_define(pty_max); lxc_config_define(pty_max);
...@@ -2054,8 +2052,9 @@ static int parse_line(char *buffer, void *data) ...@@ -2054,8 +2052,9 @@ static int parse_line(char *buffer, void *data)
* legacy configuration item in the configuration file and then * legacy configuration item in the configuration file and then
* an update is required. * an update is required.
*/ */
fprintf(stderr, "The configuration file contains legacy configuration keys.\n" fprintf(stderr, "The configuration file contains legacy "
"Please update your configuration file!\n"); "configuration keys.\nPlease update your "
"configuration file!\n");
} }
/* [END]: REMOVE IN LXC 3.0 */ /* [END]: REMOVE IN LXC 3.0 */
......
...@@ -26,9 +26,9 @@ ...@@ -26,9 +26,9 @@
#ifndef __LXC_CONFILE_H #ifndef __LXC_CONFILE_H
#define __LXC_CONFILE_H #define __LXC_CONFILE_H
#include <stdbool.h>
#include <stdio.h> #include <stdio.h>
#include <lxc/attach_options.h> #include <lxc/attach_options.h>
#include <stdbool.h>
struct lxc_conf; struct lxc_conf;
struct lxc_list; struct lxc_list;
......
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