summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorunknown <monty@donna.mysql.com>2000-12-16 01:17:13 +0200
committerunknown <monty@donna.mysql.com>2000-12-16 01:17:13 +0200
commit587387f5d0af6a4381c99bc3da4f87bae63f5cef (patch)
tree14bcbe3d9fe5425348e6a65b38a4201b7c314815 /include
parent68d0f88c5e85c412ba2539e7e107a6de54e03af5 (diff)
downloadmariadb-git-587387f5d0af6a4381c99bc3da4f87bae63f5cef.tar.gz
Configure updates
Fixed my_print_defaults --no-defaults Docs/manual.texi: Updated changelog acinclude.m4: Patches for large file support configure.in: New TCP libwrap extra/my_print_defaults.c: Fixed that --no-defaults include/my_pthread.h: Fixes for Tru64 ltconfig: Fixes for Tru64 ltmain.sh: Fixes for Tru64 mysql-test/README: Fixed types mysql-test/mysql-test-run.sh: Changed to long options
Diffstat (limited to 'include')
-rw-r--r--include/my_pthread.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/my_pthread.h b/include/my_pthread.h
index c7b5831a474..e5d827f2332 100644
--- a/include/my_pthread.h
+++ b/include/my_pthread.h
@@ -393,8 +393,8 @@ struct hostent *my_gethostbyname_r(const char *name,
#else
#ifdef HAVE_GETHOSTBYNAME_R_WITH_HOSTENT_DATA
-#define GETHOSTBYNAME_BUFF_SIZE sizeof(hostent_data)
-#define my_gethostbyname_r(A,B,C,D,E) gethostbyname_r((A),(B),(hostent_data*) (C))
+#define GETHOSTBYNAME_BUFF_SIZE sizeof(struct hostent_data)
+#define my_gethostbyname_r(A,B,C,D,E) gethostbyname_r((A),(B),(struct hostent_data*) (C))
#else
#define GETHOSTBYNAME_BUFF_SIZE 2048
#define my_gethostbyname_r(A,B,C,D,E) gethostbyname_r((A),(B),(C),(D),(E))