From 809e56e4677652e54ad2edca86d8ba6a565d60fe Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 19 Jul 2007 18:05:55 +0200 Subject: [PATCH] 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. --- sql/sql_partition.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 #include -#include "md5.h" +#include "my_md5.h" #ifdef WITH_PARTITION_STORAGE_ENGINE #include "ha_partition.h"