mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Configure updates
Fixed my_print_defaults --no-defaults
This commit is contained in:
@ -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))
|
||||
|
Reference in New Issue
Block a user