Mercurial > dropbear
comparison cli-runopts.c @ 1276:9169e4e7cbee
fix empty C prototypes
author | Francois Perrad <francois.perrad@gadz.org> |
---|---|
date | Fri, 01 Jan 2016 16:30:31 +0100 |
parents | 968be6f7cff6 |
children | 750ec4ec4cbe |
comparison
equal
deleted
inserted
replaced
1275:d49bda490798 | 1276:9169e4e7cbee |
---|---|
31 #include "tcpfwd.h" | 31 #include "tcpfwd.h" |
32 #include "list.h" | 32 #include "list.h" |
33 | 33 |
34 cli_runopts cli_opts; /* GLOBAL */ | 34 cli_runopts cli_opts; /* GLOBAL */ |
35 | 35 |
36 static void printhelp(); | 36 static void printhelp(void); |
37 static void parse_hostname(const char* orighostarg); | 37 static void parse_hostname(const char* orighostarg); |
38 static void parse_multihop_hostname(const char* orighostarg, const char* argv0); | 38 static void parse_multihop_hostname(const char* orighostarg, const char* argv0); |
39 static void fill_own_user(); | 39 static void fill_own_user(void); |
40 #ifdef ENABLE_CLI_PUBKEY_AUTH | 40 #ifdef ENABLE_CLI_PUBKEY_AUTH |
41 static void loadidentityfile(const char* filename, int warnfail); | 41 static void loadidentityfile(const char* filename, int warnfail); |
42 #endif | 42 #endif |
43 #ifdef ENABLE_CLI_ANYTCPFWD | 43 #ifdef ENABLE_CLI_ANYTCPFWD |
44 static void addforward(const char* str, m_list *fwdlist); | 44 static void addforward(const char* str, m_list *fwdlist); |