diff options
author | Matt Johnston <matt@ucc.asn.au> | 2016-03-16 22:53:27 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2016-03-16 22:53:27 +0800 |
commit | c830d30553abc3710c3d5eb18964cd96fc37c902 (patch) | |
tree | 393f384cd748140a3fb55f41a7009baca51a062e /cli-runopts.c | |
parent | 3e7672edca09cb72ca8be481b5a6d5fb30b79149 (diff) | |
parent | 0650182289344e0d83b20c0cea1024a2306d2072 (diff) |
merge
Diffstat (limited to 'cli-runopts.c')
-rw-r--r-- | cli-runopts.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cli-runopts.c b/cli-runopts.c index 8d1edee..24169c9 100644 --- a/cli-runopts.c +++ b/cli-runopts.c @@ -33,10 +33,10 @@ cli_runopts cli_opts; /* GLOBAL */ -static void printhelp(); +static void printhelp(void); static void parse_hostname(const char* orighostarg); static void parse_multihop_hostname(const char* orighostarg, const char* argv0); -static void fill_own_user(); +static void fill_own_user(void); #ifdef ENABLE_CLI_PUBKEY_AUTH static void loadidentityfile(const char* filename, int warnfail); #endif @@ -315,6 +315,7 @@ void cli_getopts(int argc, char ** argv) { break; case 'b': next = &dummy; + /* FALLTHROUGH */ default: fprintf(stderr, "WARNING: Ignoring unknown option -%c\n", c); |