summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2022-08-01 16:55:54 (GMT)
committerGitHub <noreply@github.com>2022-08-01 16:55:54 (GMT)
commitecab3d9c2afbf1b838634317b45876802182983c (patch)
tree677ccd29cc405d39b5f6865d0d4d137852cd9aad /bin
parent47fee5bfd711dd73b15c25abd962ab539e731ebe (diff)
downloadhdf5-ecab3d9c2afbf1b838634317b45876802182983c.zip
hdf5-ecab3d9c2afbf1b838634317b45876802182983c.tar.gz
hdf5-ecab3d9c2afbf1b838634317b45876802182983c.tar.bz2
Removes Windows getlogin() equivalents (#1958)
This function is no longer used in the library
Diffstat (limited to 'bin')
-rwxr-xr-xbin/checkposix2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/checkposix b/bin/checkposix
index bca259d..6bc8f7d 100755
--- a/bin/checkposix
+++ b/bin/checkposix
@@ -136,7 +136,7 @@ foreach $arg (@ARGV) {
# These are Windows system calls. Ignore them.
next if $name =~ /^(_get_osfhandle|GetFileInformationByHandle|SetFilePointer|GetLastError|SetEndOfFile)$/;
- next if $name =~ /^(FindNextFile|FindClose|_tzset|Wgettimeofday|GetSystemTimeAsFileTime|Wgetlogin|GetUserName)$/;
+ next if $name =~ /^(FindNextFile|FindClose|_tzset|Wgettimeofday|GetSystemTimeAsFileTime|GetUserName)$/;
next if $name =~ /^(DeleteCriticalSection|TlsFree|TlsGetValue|CreateThread)$/;
next if $name =~ /^(ExpandEnvironmentStringsA|LockFileEx|UnlockFileEx)$/;
next if $name =~ /^(DllMain|LocalAlloc|LocalFree)$/;