From: Ondrej Zajicek Date: Mon, 25 Nov 2013 01:03:23 +0000 (+0100) Subject: Allows shorthands for birdc noninteractive commands. X-Git-Tag: v1.4.0~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8137fe6d45762844248300de2a030e96042b1975;p=thirdparty%2Fbird.git Allows shorthands for birdc noninteractive commands. --- diff --git a/client/client.c b/client/client.c index a9d0096d9..b938f3443 100644 --- a/client/client.c +++ b/client/client.c @@ -137,6 +137,21 @@ submit_server_command(char *cmd) server_send(cmd); } +static inline void +submit_init_command(char *cmd_raw) +{ + char *cmd = cmd_expand(cmd_raw); + + if (!cmd) + { + cleanup(); + exit(0); + } + + submit_server_command(cmd); + free(cmd); +} + void submit_command(char *cmd_raw) { @@ -165,7 +180,7 @@ init_commands(void) { /* First transition - client received hello from BIRD and there is waiting initial command */ - submit_server_command(init_cmd); + submit_init_command(init_cmd); init_cmd = NULL; return; }