diff options
author | Matt Johnston <matt@ucc.asn.au> | 2014-07-27 22:55:29 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2014-07-27 22:55:29 +0800 |
commit | 923fc9087c10a7a2bf4941e3e25f20229b3e5eec (patch) | |
tree | a8a5ef8f3483d93f2493d26d235d0445073f823c /common-runopts.c | |
parent | 83511fecc0d235cbf7173faf788c934e13c5877f (diff) | |
download | dropbear-923fc9087c10a7a2bf4941e3e25f20229b3e5eec.tar.gz |
- Don't use multichar constants since recent gcc complains
- Add release script
- Simplify print_version
Diffstat (limited to 'common-runopts.c')
-rw-r--r-- | common-runopts.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common-runopts.c b/common-runopts.c index cdac77e..4c07e1f 100644 --- a/common-runopts.c +++ b/common-runopts.c @@ -106,8 +106,8 @@ parse_ciphers_macs() } #endif -void print_version(const char* name) { - fprintf(stderr, "Dropbear %s v%s\n", name, DROPBEAR_VERSION); +void print_version() { + fprintf(stderr, "Dropbear v%s\n", DROPBEAR_VERSION); } |