diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2022-08-01 16:55:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-01 16:55:54 (GMT) |
commit | ecab3d9c2afbf1b838634317b45876802182983c (patch) | |
tree | 677ccd29cc405d39b5f6865d0d4d137852cd9aad /bin | |
parent | 47fee5bfd711dd73b15c25abd962ab539e731ebe (diff) | |
download | hdf5-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-x | bin/checkposix | 2 |
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)$/; |