1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

- replaced all occurences of HPUX with HPUX10 (to be prepared for eventual

differences in HPUX11)
This commit is contained in:
lenz@mysql.com
2002-10-24 14:30:25 +02:00
parent dd0e342742
commit 9b769dbd22
14 changed files with 24 additions and 24 deletions

View File

@ -221,7 +221,7 @@ int my_connect(my_socket s, const struct sockaddr *name, uint namelen,
{
tv.tv_sec = (long) timeout;
tv.tv_usec = 0;
#if defined(HPUX) && defined(THREAD)
#if defined(HPUX10) && defined(THREAD)
if ((res = select(s+1, NULL, (int*) &sfds, NULL, &tv)) >= 0)
break;
#else