md5crypt: seed should be unsigned.
This commit is contained in:
parent
8dd10ab852
commit
b810c311d0
1 changed files with 1 additions and 1 deletions
|
@ -2378,7 +2378,7 @@ md5crypt_func (char *arg, int flags)
|
||||||
{
|
{
|
||||||
char crypted[36];
|
char crypted[36];
|
||||||
char key[32];
|
char key[32];
|
||||||
int seed;
|
unsigned int seed;
|
||||||
int i;
|
int i;
|
||||||
const char *const seedchars =
|
const char *const seedchars =
|
||||||
"./0123456789ABCDEFGHIJKLMNOPQRST"
|
"./0123456789ABCDEFGHIJKLMNOPQRST"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue