From 923fc9087c10a7a2bf4941e3e25f20229b3e5eec Mon Sep 17 00:00:00 2001 From: Matt Johnston Date: Sun, 27 Jul 2014 22:55:29 +0800 Subject: - Don't use multichar constants since recent gcc complains - Add release script - Simplify print_version --- common-runopts.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'common-runopts.c') 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); } -- cgit v1.2.1