diff options
author | unknown <joerg@trift-lap.none> | 2007-07-19 14:14:03 +0200 |
---|---|---|
committer | unknown <joerg@trift-lap.none> | 2007-07-19 14:14:03 +0200 |
commit | f4209c71a24ec563dd876db3a94fad7d2c53b8aa (patch) | |
tree | 384b50aefabe8834cf34958a95feda6e244a1ff2 /tools | |
parent | c3e1eaba62e1ecd7b007df01c35228c828fdf142 (diff) | |
download | mariadb-git-f4209c71a24ec563dd876db3a94fad7d2c53b8aa.tar.gz |
Avoid the name conflict between the system-provided "md5.h" and the MySQL one
by renaming "include/md5.h" to "include/my_md5.h".
Fixes bug#14151.
include/my_md5.h:
Rename: include/md5.h -> include/my_md5.h
Diffstat (limited to 'tools')
-rw-r--r-- | tools/mysqlmanager.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mysqlmanager.c b/tools/mysqlmanager.c index f952a5806b4..faed9addf60 100644 --- a/tools/mysqlmanager.c +++ b/tools/mysqlmanager.c @@ -37,7 +37,7 @@ #include <sys/stat.h> #include <errno.h> #include <violite.h> -#include <md5.h> +#include "my_md5.h" #include <signal.h> #ifdef HAVE_SYS_WAIT_H #include <sys/wait.h> |