From: Darren Tucker Date: Sat, 10 Feb 2018 00:14:54 +0000 (+1100) Subject: Remove unused variables. X-Git-Tag: V_7_7_P1~125 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fbddd91897cfaf456bfc2081f39fb4a2208a0ebf;p=thirdparty%2Fopenssh-portable.git Remove unused variables. --- diff --git a/md5crypt.c b/md5crypt.c index 22ef98933..5625fd3cf 100644 --- a/md5crypt.c +++ b/md5crypt.c @@ -50,7 +50,7 @@ is_md5_salt(const char *salt) char * md5_crypt(const char *pw, const char *salt) { - static char passwd[120], salt_copy[9], *p; + static char passwd[120], salt_copy[9]; static const char *sp, *ep; unsigned char final[16]; int sl, pl, i, j;