diff options
author | unknown <kostja@oak.local> | 2003-07-18 18:57:21 +0400 |
---|---|---|
committer | unknown <kostja@oak.local> | 2003-07-18 18:57:21 +0400 |
commit | 4df473b81c92be37364abaa83b0bafe21fc135a4 (patch) | |
tree | 06b70f471463eec69c8b15d74c4c0b590297d594 /include/mysql.h | |
parent | 30ced7f7f61aa25b486ab2134b1fa81310647bc6 (diff) | |
download | mariadb-git-4df473b81c92be37364abaa83b0bafe21fc135a4.tar.gz |
few compile-time bugs fixed
include/mysql.h:
fixed compile-time bug
sql/sql_class.cc:
fixed compile-time bug
sql/sql_class.h:
fixed compile-time bug
Diffstat (limited to 'include/mysql.h')
-rw-r--r-- | include/mysql.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mysql.h b/include/mysql.h index 079808d9ba7..10bacffb2b1 100644 --- a/include/mysql.h +++ b/include/mysql.h @@ -229,7 +229,7 @@ typedef struct st_mysql my_bool reconnect; /* set to 1 if automatic reconnect */ /* session-wide random string */ - char scramble[max(SCRAMBLE_LENGTH,SCRAMBLE_LENGTH_323)+1]; + char scramble[SCRAMBLE_LENGTH+1]; /* Set if this is the original connection, not a master or a slave we have |