diff options
Diffstat (limited to 'sql/password.c')
-rw-r--r-- | sql/password.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/password.c b/sql/password.c index 9752bcc95eb..257547671e5 100644 --- a/sql/password.c +++ b/sql/password.c @@ -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 */ |