1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

SCRAM Remove spaces from most changed files.

This alters not only my code so it looks like I'm not only one adding the spaces.
This commit is contained in:
peter@mysql.com
2002-12-05 01:14:51 +03:00
parent 5fa02daa69
commit 1d920529a8
9 changed files with 392 additions and 391 deletions

View File

@ -1279,7 +1279,8 @@ String *Item_func_password::val_str(String *str)
return 0;
if (res->length() == 0)
return &empty_string;
make_scrambled_password(tmp_value,res->c_ptr(),opt_old_passwords,&current_thd->rand);
make_scrambled_password(tmp_value,res->c_ptr(),opt_old_passwords,
&current_thd->rand);
str->set(tmp_value,get_password_length(opt_old_passwords),res->charset());
return str;
}