summaryrefslogtreecommitdiff
path: root/sql/sql_class.h
diff options
context:
space:
mode:
authorunknown <kostja@oak.local>2003-07-18 18:57:21 +0400
committerunknown <kostja@oak.local>2003-07-18 18:57:21 +0400
commit2fa2ab70470251f242b33287468a22319057bc6b (patch)
tree06b70f471463eec69c8b15d74c4c0b590297d594 /sql/sql_class.h
parenta4b15d5311b763d381389f4c448d8f11663e5b57 (diff)
downloadmariadb-git-2fa2ab70470251f242b33287468a22319057bc6b.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 'sql/sql_class.h')
-rw-r--r--sql/sql_class.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h
index 1557ede8305..4eb1d6057a9 100644
--- a/sql/sql_class.h
+++ b/sql/sql_class.h
@@ -547,7 +547,7 @@ public:
DYNAMIC_ARRAY user_var_events;
/* scramble - random string sent to client on handshake */
- char scramble[max(SCRAMBLE_LENGTH, SCRAMBLE_LENGTH_323)+1];
+ char scramble[SCRAMBLE_LENGTH+1];
uint8 query_cache_type; // type of query cache processing
bool slave_thread;