From 476479cdb40531900b25e298efb7c7739fc118c2 Mon Sep 17 00:00:00 2001 From: Andrew Bettison Date: Thu, 13 Dec 2012 17:35:17 +1030 Subject: [PATCH] Permissive log file loading for 'stop' and 'help' commands --- commandline.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commandline.c b/commandline.c index 38b1e209..eaa738d4 100644 --- a/commandline.c +++ b/commandline.c @@ -1962,7 +1962,7 @@ int app_network_scan(int argc, const char *const *argv, const struct command_lin struct command_line_option command_line_options[]={ {app_dna_lookup,{"dna","lookup","","[]",NULL},0, "Lookup the SIP/MDP address of the supplied telephone number (DID)."}, - {commandline_usage,{"help",NULL},0, + {commandline_usage,{"help",NULL},CLIFLAG_PERMISSIVE_CONFIG, "Display command usage."}, {app_echo,{"echo","...",NULL},CLIFLAG_STANDALONE, "Output the supplied string."}, @@ -1982,7 +1982,7 @@ struct command_line_option command_line_options[]={ "Stop a running Serval Mesh node process with instance path taken from SERVALINSTANCE_PATH environment variable."}, {app_server_stop,{"stop","in","",NULL},CLIFLAG_PERMISSIVE_CONFIG, "Stop a running Serval Mesh node process with given instance path."}, - {app_server_status,{"status",NULL},0, + {app_server_status,{"status",NULL},CLIFLAG_PERMISSIVE_CONFIG, "Display information about any running Serval Mesh node."}, {app_mdp_ping,{"mdp","ping","","[]",NULL},CLIFLAG_STANDALONE, "Attempts to ping specified node via Mesh Datagram Protocol (MDP)."},