From 8d73480d99a99d0ba298ecace9ad9f826f192444 Mon Sep 17 00:00:00 2001 From: Tim Kourt Date: Tue, 29 Oct 2019 10:41:32 -0700 Subject: [PATCH] client: Separate command option words by dash --- client/command.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/command.h b/client/command.h index 2161c075..d906dc9b 100644 --- a/client/command.h +++ b/client/command.h @@ -23,7 +23,7 @@ #define COMMAND_OPTION_USERNAME "username" #define COMMAND_OPTION_PASSWORD "password" #define COMMAND_OPTION_PASSPHRASE "passphrase" -#define COMMAND_OPTION_DONTASK "dontask" +#define COMMAND_OPTION_DONTASK "dont-ask" typedef char *(*command_completion_func_t) (const char *text, int state);