summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluther <luther@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-08-29 20:06:44 +0000
committerluther <luther@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-08-29 20:06:44 +0000
commitfc176b9785c8667c961ffc157da3a075fc54d920 (patch)
tree4381ac79d9ded818a69feec49c390857c63e101e
parentf3bcb51e8e17ad5628d7e0f5b7307ae3dee15b96 (diff)
downloadATCD-fc176b9785c8667c961ffc157da3a075fc54d920.tar.gz
Tue Aug 29 14:59:35 2000 Luther J Baker <luther@cs.wustl.edu>
-rw-r--r--PACE/ChangeLog10
-rw-r--r--PACE/pace/win32/stat.inl2
2 files changed, 11 insertions, 1 deletions
diff --git a/PACE/ChangeLog b/PACE/ChangeLog
index f534fde0966..3440d36d415 100644
--- a/PACE/ChangeLog
+++ b/PACE/ChangeLog
@@ -1,5 +1,15 @@
+Tue Aug 29 14:59:35 2000 Luther J Baker <luther@cs.wustl.edu>
+
+ * pace/win32/stat.inl (pace_fstat):
+
+ Typo.
+
Tue Aug 29 14:57:04 2000 Luther J Baker <luther@cs.wustl.edu>
+ * pace/win32/stat.h (pace_stat):
+
+ Atered pace_stat_h typedef.
+
* pace/win32/stat.inl (pace_stat):
Implemented pace_fstat and pace_stat.
diff --git a/PACE/pace/win32/stat.inl b/PACE/pace/win32/stat.inl
index 94138bcfb71..fb45b0ded51 100644
--- a/PACE/pace/win32/stat.inl
+++ b/PACE/pace/win32/stat.inl
@@ -46,7 +46,7 @@ pace_fstat (PACE_HANDLE fildes, pace_stat_s * buf)
int fd = _open_osfhandle ((long) fildes, 0);
if (fd != -1)
{
- retval = ::_fstat (fd, (struct _stat *) stp);
+ retval = _fstat (fd, (struct _stat *) buf);
}
_close (fd);