summaryrefslogtreecommitdiff
path: root/strings/strmake.c
diff options
context:
space:
mode:
authormonty@narttu.mysql.fi <>2003-07-04 03:18:15 +0300
committermonty@narttu.mysql.fi <>2003-07-04 03:18:15 +0300
commitf3af0d7ce423d3b28de463c430f4ff4bef8b925e (patch)
treeeaf3cc9d9913bdfe213c549f3890aa25f565ca8b /strings/strmake.c
parent3f4f339f15748a348d085da9c3d17658d01b4af3 (diff)
downloadmariadb-git-f3af0d7ce423d3b28de463c430f4ff4bef8b925e.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)
Diffstat (limited to 'strings/strmake.c')
-rw-r--r--strings/strmake.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/strmake.c b/strings/strmake.c
index 2e384fc168a..d2252f648f6 100644
--- a/strings/strmake.c
+++ b/strings/strmake.c
@@ -21,7 +21,7 @@
strmake(dst,src,length) moves length characters, or until end, of src to
dst and appends a closing NUL to dst.
- Note that is strlen(src) >= length then dst[length] will be set to \0
+ Note that if strlen(src) >= length then dst[length] will be set to \0
strmake() returns pointer to closing null
*/