Commit 10096d91 authored by unknown's avatar unknown

fixed bad merge (s/rnd/my_rnd/)

parent 42879405
......@@ -118,7 +118,7 @@ static void old_randominit(struct rand_struct *rand_st,ulong seed1)
Generate Random number
SYNOPSIS
rnd()
my_rnd()
rand_st INOUT Structure used for number generation
RETURN
......@@ -152,7 +152,7 @@ void create_random_string(int length,struct rand_struct *rand_st,char *target)
char *end=target+length;
/* Use pointer arithmetics as it is faster way to do so. */
for (; target<end ; target++)
*target= (char) (rnd(rand_st)*94+33);
*target= (char) (my_rnd(rand_st)*94+33);
}
......@@ -293,7 +293,7 @@ void make_scrambled_password(char *to,const char *password,
{
to[0]=PVERSION41_CHAR; /* New passwords have version prefix */
/* Rnd returns number from 0 to 1 so this would be good salt generation.*/
salt=(unsigned short) (rnd(rand_st)*65535+1);
salt=(unsigned short) (my_rnd(rand_st)*65535+1);
/* Use only 2 first bytes from it */
sprintf(to+1,"%04x",salt);
/* First hasing is done without salt */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment