diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-12-05 09:14:44 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-12-05 09:14:44 +0000 |
commit | ed59ec62717f0f88ed3d32dff6bf15dd59269b91 (patch) | |
tree | 1f83bba313c5a1a8dec8bd4a1368c4b6f5870361 /win32/win32.c | |
parent | 5b3035ed4d02db655cf5d2d62ab1ebb11c131def (diff) | |
download | perl-ed59ec62717f0f88ed3d32dff6bf15dd59269b91.tar.gz |
fix open(FOO, ">&MYSOCK") failure under Windows 9x (problem is
due to the notorious GetFileType() bug in Windows 9x, which fstat()
tickles)
p4raw-id: //depot/perl@7986
Diffstat (limited to 'win32/win32.c')
-rw-r--r-- | win32/win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/win32.c b/win32/win32.c index 2167eeb9a1..924ee92a7e 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -2350,7 +2350,7 @@ win32_fstat(int fd,struct stat *sbufptr) } return rc; #else - return fstat(fd,sbufptr); + return my_fstat(fd,sbufptr); #endif } |