diff options
author | unknown <monty@narttu.mysql.fi> | 2003-07-04 03:18:15 +0300 |
---|---|---|
committer | unknown <monty@narttu.mysql.fi> | 2003-07-04 03:18:15 +0300 |
commit | 2d5d754c8c28ca087f44f479e0fca614789b42e5 (patch) | |
tree | eaf3cc9d9913bdfe213c549f3890aa25f565ca8b /sql/sql_repl.h | |
parent | db5283b30667c9d427228069314f53d38c4ef8f1 (diff) | |
download | mariadb-git-2d5d754c8c28ca087f44f479e0fca614789b42e5.tar.gz |
Status query on killed mysql connection results in segmentation fault (Bug #738)
Added MAX_PASSWORD_LENGTH. This increased master-slave passwords to 32 bytes (Bug #766)
Fixed server crash on purge master logs or show master logs when binlog is off. (Bug #733)
client/mysql.cc:
status query on killed mysql connection results in segmentation fault (Bug #738)
configure.in:
Portability fix for Unixware
include/my_global.h:
Removed wrong patch from previous changeset
sql/mysql_priv.h:
Added MAX_PASSWORD_LENGTH. This increased master-slave passwords to 32 bytes
sql/slave.h:
Optimized structure
sql/sql_repl.cc:
Memory overrun safety fixes (not critical)
Fixed server crash on purge master logs or show master logs when binlog is off. (Bug #733)
sql/sql_repl.h:
Fixed to use right define
strings/strmake.c:
Fixed comment
Diffstat (limited to 'sql/sql_repl.h')
-rw-r--r-- | sql/sql_repl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_repl.h b/sql/sql_repl.h index 15435382b08..c73744c4b7c 100644 --- a/sql/sql_repl.h +++ b/sql/sql_repl.h @@ -6,7 +6,7 @@ typedef struct st_slave_info uint32 rpl_recovery_rank, master_id; char host[HOSTNAME_LENGTH+1]; char user[USERNAME_LENGTH+1]; - char password[HASH_PASSWORD_LENGTH+1]; + char password[MAX_PASSWORD_LENGTH+1]; uint16 port; THD* thd; } SLAVE_INFO; |