mirror of git://anongit.mindrot.org/openssh.git
Remove assigned-to-but-never-used variable.
'p' was removed in previous change but I neglected to remove the otherwise-unused assignment to it.
This commit is contained in:
parent
b8bbff3b3f
commit
49f3c0ec47
|
@ -139,8 +139,6 @@ md5_crypt(const char *pw, const char *salt)
|
||||||
MD5_Final(final, &ctx1);
|
MD5_Final(final, &ctx1);
|
||||||
}
|
}
|
||||||
|
|
||||||
p = passwd + strlen(passwd);
|
|
||||||
|
|
||||||
l = (final[ 0]<<16) | (final[ 6]<<8) | final[12];
|
l = (final[ 0]<<16) | (final[ 6]<<8) | final[12];
|
||||||
strlcat(passwd, to64(l, 4), sizeof(passwd));
|
strlcat(passwd, to64(l, 4), sizeof(passwd));
|
||||||
l = (final[ 1]<<16) | (final[ 7]<<8) | final[13];
|
l = (final[ 1]<<16) | (final[ 7]<<8) | final[13];
|
||||||
|
|
Loading…
Reference in New Issue