diff options
author | unknown <joerg@trift-lap.none> | 2007-07-19 18:05:55 +0200 |
---|---|---|
committer | unknown <joerg@trift-lap.none> | 2007-07-19 18:05:55 +0200 |
commit | 809e56e4677652e54ad2edca86d8ba6a565d60fe (patch) | |
tree | e197bc579dbf13378b1ab72dc2ed06cc054c3927 /sql/sql_partition.cc | |
parent | bb00bbef1bf7bf75cd8499778e58b0e1b8484c4e (diff) | |
download | mariadb-git-809e56e4677652e54ad2edca86d8ba6a565d60fe.tar.gz |
After-merge fix for bug#14151.
sql/sql_partition.cc:
After-merge fix for bug#14151:
This use of "md5.h" is new in 5.1 and must be changed to "my_md5.h" as well.
Diffstat (limited to 'sql/sql_partition.cc')
-rw-r--r-- | sql/sql_partition.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_partition.cc b/sql/sql_partition.cc index 0584bb12b9e..5cfb46a99ab 100644 --- a/sql/sql_partition.cc +++ b/sql/sql_partition.cc @@ -36,7 +36,7 @@ #include "mysql_priv.h" #include <errno.h> #include <m_ctype.h> -#include "md5.h" +#include "my_md5.h" #ifdef WITH_PARTITION_STORAGE_ENGINE #include "ha_partition.h" |