summaryrefslogtreecommitdiff
path: root/win32/win32.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-12-05 09:14:44 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-12-05 09:14:44 +0000
commited59ec62717f0f88ed3d32dff6bf15dd59269b91 (patch)
tree1f83bba313c5a1a8dec8bd4a1368c4b6f5870361 /win32/win32.c
parent5b3035ed4d02db655cf5d2d62ab1ebb11c131def (diff)
downloadperl-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.c2
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
}