diff options
author | unknown <monty@donna.mysql.com> | 2000-10-23 15:35:42 +0300 |
---|---|---|
committer | unknown <monty@donna.mysql.com> | 2000-10-23 15:35:42 +0300 |
commit | 76edea0d7354133743b3608213653c5a7f3c94ce (patch) | |
tree | 20b25b09438bf3aad77ad7810faab9651daf310f /include/m_string.h | |
parent | 3d10e826ffc1423ced9a2d845a8e617b0d569f58 (diff) | |
download | mariadb-git-76edea0d7354133743b3608213653c5a7f3c94ce.tar.gz |
Fix of automatic repair
Docs/manual.texi:
Update for 3.23.27
configure.in:
Fixed syntax error
include/m_string.h:
bmove() was wrongly defined (old code was probably never executed)
myisam/mi_check.c:
Fix for automatic repair
myisam/myisamchk.c:
Fix for automatic repair
sql/ha_myisam.cc:
Fix for automatic repair
sql/handler.cc:
Fix for automatic repair
sql/mysqlbinlog.cc:
Indentation
sql/sql_insert.cc:
Move incrementation of thread_count to make things safer
sql/sql_parse.cc:
Added a new state for bug tracking
sql/sql_select.cc:
Increment created_tmp_disk_tables for each internal temporary
MyISAM table. Added path to some printf statements.
Diffstat (limited to 'include/m_string.h')
-rw-r--r-- | include/m_string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/m_string.h b/include/m_string.h index c17e928ea37..6b7719d44f5 100644 --- a/include/m_string.h +++ b/include/m_string.h @@ -62,7 +62,7 @@ #if !defined(HAVE_MEMCPY) && !defined(HAVE_MEMMOVE) # define memcpy(d, s, n) bcopy ((s), (d), (n)) # define memset(A,C,B) bfill((A),(B),(C)) -# define memmove(d, s, n) bmove ((s), (d), (n)) +# define memmove(d, s, n) bmove ((d), (s), (n)) #elif defined(HAVE_MEMMOVE) # define bmove(d, s, n) memmove((d), (s), (n)) #else |