summaryrefslogtreecommitdiff
path: root/common-runopts.c
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2014-07-27 22:55:29 +0800
committerMatt Johnston <matt@ucc.asn.au>2014-07-27 22:55:29 +0800
commit923fc9087c10a7a2bf4941e3e25f20229b3e5eec (patch)
treea8a5ef8f3483d93f2493d26d235d0445073f823c /common-runopts.c
parent83511fecc0d235cbf7173faf788c934e13c5877f (diff)
downloaddropbear-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.c4
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);
}