diff options
author | monty@mashka.mysql.fi <> | 2002-12-06 21:15:05 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2002-12-06 21:15:05 +0200 |
commit | f1d35b29bc9c1bd97fb390667902336d4c54b582 (patch) | |
tree | b01c89759dacf84a203fb568b2be9505aebf9a96 /sql/password.c | |
parent | f1858ec33148388e5456422be3d6b363291d9636 (diff) | |
parent | 35ff08c2af7c6fd61d28e7da35ee5c3b6d26c06d (diff) | |
download | mariadb-git-f1d35b29bc9c1bd97fb390667902336d4c54b582.tar.gz |
merge fix
Diffstat (limited to 'sql/password.c')
-rw-r--r-- | sql/password.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/password.c b/sql/password.c index b5254ad06b7..0bc8055a5cb 100644 --- a/sql/password.c +++ b/sql/password.c @@ -84,7 +84,7 @@ void randominit(struct rand_struct *rand_st,ulong seed1, ulong seed2) { /* For mysql 3.21.# */ #ifdef HAVE_purify - bzero((char*) rand_st,sizeof(*rand_st)); /* Avoid UMC varnings */ + bzero((char*) rand_st,sizeof(*rand_st)); /* Avoid UMC varnings */ #endif rand_st->max_value= 0x3FFFFFFFL; rand_st->max_value_dbl=(double) rand_st->max_value; |