diff options
author | joerg@trift-lap.none <> | 2007-07-19 14:14:03 +0200 |
---|---|---|
committer | joerg@trift-lap.none <> | 2007-07-19 14:14:03 +0200 |
commit | af3c675bc1176aef4d7f1070a80c49b987e54d6e (patch) | |
tree | 384b50aefabe8834cf34958a95feda6e244a1ff2 /mysys | |
parent | aa03d369bff132c2c00bf7de9902792f0eaf5b5e (diff) | |
download | mariadb-git-af3c675bc1176aef4d7f1070a80c49b987e54d6e.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.
Diffstat (limited to 'mysys')
-rw-r--r-- | mysys/md5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/md5.c b/mysys/md5.c index a88fb279a0b..0945f9ce5f4 100644 --- a/mysys/md5.c +++ b/mysys/md5.c @@ -45,7 +45,7 @@ documentation and/or software. #include <my_global.h> #include <m_string.h> -#include "md5.h" +#include "my_md5.h" /* Constants for MD5Transform routine. */ |