diff options
-rw-r--r-- | conf/confbase.Y | 2 | ||||
-rw-r--r-- | nest/cli.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/conf/confbase.Y b/conf/confbase.Y index bc8f535..02a86e9 100644 --- a/conf/confbase.Y +++ b/conf/confbase.Y @@ -19,8 +19,6 @@ CF_HDR #include "nest/cli.h" #include "filter/filter.h" -#define cli_msg(x...) cli_printf(this_cli, x) - CF_DECLS %union { @@ -41,6 +41,7 @@ extern struct cli *this_cli; /* Used during parsing */ /* Functions to be called by command handlers */ void cli_printf(cli *, int, char *, ...); +#define cli_msg(x...) cli_printf(this_cli, x) /* Functions provided to sysdep layer */ |