summaryrefslogtreecommitdiff
path: root/md5crypt.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2018-02-10 11:14:54 +1100
committerDarren Tucker <dtucker@dtucker.net>2018-02-10 11:14:54 +1100
commitfbddd91897cfaf456bfc2081f39fb4a2208a0ebf (patch)
treee6a7699134ab531c2b5662ca94681efa15a8a233 /md5crypt.c
parent937d96587df99c16c611d828cded292fa474a32b (diff)
Remove unused variables.
Diffstat (limited to 'md5crypt.c')
-rw-r--r--md5crypt.c2
1 files changed, 1 insertions, 1 deletions
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)
50char * 50char *
51md5_crypt(const char *pw, const char *salt) 51md5_crypt(const char *pw, const char *salt)
52{ 52{
53 static char passwd[120], salt_copy[9], *p; 53 static char passwd[120], salt_copy[9];
54 static const char *sp, *ep; 54 static const char *sp, *ep;
55 unsigned char final[16]; 55 unsigned char final[16];
56 int sl, pl, i, j; 56 int sl, pl, i, j;