diff options
author | lenz@mysql.com <> | 2002-10-24 14:30:25 +0200 |
---|---|---|
committer | lenz@mysql.com <> | 2002-10-24 14:30:25 +0200 |
commit | 9b769dbd2292bd7c37ab01cf0e5ebf49cc4d8349 (patch) | |
tree | 2f40701031727d38957abb36f9e566d09b47ec9f /include/my_net.h | |
parent | dd0e34274259a91cfd706cb6d8d3351fbf94b0d4 (diff) | |
download | mariadb-git-9b769dbd2292bd7c37ab01cf0e5ebf49cc4d8349.tar.gz |
- replaced all occurences of HPUX with HPUX10 (to be prepared for eventual
differences in HPUX11)
Diffstat (limited to 'include/my_net.h')
-rw-r--r-- | include/my_net.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/my_net.h b/include/my_net.h index 2f5743923cf..ec985ded76b 100644 --- a/include/my_net.h +++ b/include/my_net.h @@ -71,7 +71,7 @@ void my_inet_ntoa(struct in_addr in, char *buf); Handling of gethostbyname_r() */ -#if !defined(HPUX) +#if !defined(HPUX10) struct hostent; #endif /* HPUX */ #if !defined(HAVE_GETHOSTBYNAME_R) @@ -84,7 +84,7 @@ struct hostent *my_gethostbyname_r(const char *name, struct hostent *result, char *buffer, int buflen, int *h_errnop); #define my_gethostbyname_r_free() -#if !defined(HAVE_GETHOSTBYNAME_R_GLIBC2_STYLE) && !defined(HPUX) +#if !defined(HAVE_GETHOSTBYNAME_R_GLIBC2_STYLE) && !defined(HPUX10) #define GETHOSTBYNAME_BUFF_SIZE sizeof(struct hostent_data) #endif /* !defined(HAVE_GETHOSTBYNAME_R_GLIBC2_STYLE) */ |