diff options
author | monty@hundin.mysql.fi <> | 2001-09-14 02:54:33 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2001-09-14 02:54:33 +0300 |
commit | 7cadc6e711cedf2d8cfd9809616b9e521927f4b7 (patch) | |
tree | 633afdf8fdbda69f1a5a66b706478fa9e37cf0f8 /libmysql/libmysql.c | |
parent | e28586e005f913b8ba328d9a099b10a8158647ee (diff) | |
download | mariadb-git-7cadc6e711cedf2d8cfd9809616b9e521927f4b7.tar.gz |
Changed to use my_global.h
Fixed problem with LIKE with latin1_de
Added parsing support of UNSIGNED LONG LONG
Diffstat (limited to 'libmysql/libmysql.c')
-rw-r--r-- | libmysql/libmysql.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libmysql/libmysql.c b/libmysql/libmysql.c index e7705ee20e4..c1bc589e9d4 100644 --- a/libmysql/libmysql.c +++ b/libmysql/libmysql.c @@ -15,7 +15,7 @@ Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ -#include <global.h> +#include <my_global.h> #if defined(__WIN__) || defined(_WIN32) || defined(_WIN64) #include <winsock.h> #include <odbcinst.h> @@ -70,7 +70,7 @@ my_string mysql_unix_port=0; #endif #if defined(MSDOS) || defined(__WIN__) -// socket_errno is defined in global.h for all platforms +// socket_errno is defined in my_global.h for all platforms #define perror(A) #else #include <errno.h> |