summaryrefslogtreecommitdiffstats
path: root/src/H5system.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2012-06-11 15:49:25 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2012-06-11 15:49:25 (GMT)
commit75f31948821d7b134f20948f1d3c18547c4c654f (patch)
treee6314a46e246b7ce56d8eadce1ea1994ca615576 /src/H5system.c
parentd1b7eede73dd9968042b3e8e1bbabe8949d670ed (diff)
downloadhdf5-75f31948821d7b134f20948f1d3c18547c4c654f.zip
hdf5-75f31948821d7b134f20948f1d3c18547c4c654f.tar.gz
hdf5-75f31948821d7b134f20948f1d3c18547c4c654f.tar.bz2
[svn-r22450] Update winsock define to match autotools configure check
Diffstat (limited to 'src/H5system.c')
-rw-r--r--src/H5system.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5system.c b/src/H5system.c
index bb1d2f1..c0baee1 100644
--- a/src/H5system.c
+++ b/src/H5system.c
@@ -639,7 +639,7 @@ Wgettimeofday(struct timeval *tv, struct timezone *tz)
return 0;
}
-#ifdef H5_HAVE_WINSOCK_H
+#ifdef H5_HAVE_WINSOCK2_H
#pragma comment(lib, "advapi32.lib")
#endif
@@ -650,12 +650,12 @@ char*
Wgetlogin()
{
-#ifdef H5_HAVE_WINSOCK_H
+#ifdef H5_HAVE_WINSOCK2_H
long bufferCount = WloginBuffer_count;
if (GetUserName(Wlogin_buffer, &bufferCount) == 0)
return (Wlogin_buffer);
else
-#endif /* H5_HAVE_WINSOCK_H */
+#endif /* H5_HAVE_WINSOCK2_H */
return NULL;
}