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 /src/H5system.c | |
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 'src/H5system.c')
-rw-r--r-- | src/H5system.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/H5system.c b/src/H5system.c index 22c9578..677452d 100644 --- a/src/H5system.c +++ b/src/H5system.c @@ -443,22 +443,6 @@ H5_get_win32_times(H5_timevals_t *tvs /*in,out*/) } /* end H5_get_win32_times() */ #endif -#define WloginBuffer_count 256 -static char Wlogin_buffer[WloginBuffer_count]; - -char * -Wgetlogin(void) -{ - -#ifdef H5_HAVE_WIN32_API - DWORD bufferCount = WloginBuffer_count; - if (GetUserName(Wlogin_buffer, &bufferCount) != 0) - return (Wlogin_buffer); - else -#endif - return NULL; -} - /*------------------------------------------------------------------------- * Function: Wflock * |