Displaying 1 result from an estimated 1 matches for "da55e0c".
Did you mean:
d55e00
2009 Mar 06
0
[PATCH 3/3] COM32/stat(): preset ret and move zeroing errno
From: Gene Cumm <gene.cumm at gmail.com>
COM32/stat(): preset ret and move zeroing errno
Signed-off-by: Gene Cumm <gene.cumm at gmail.com>
---
Depends on string of patches this week
diff --git a/com32/lib/sys/stat.c b/com32/lib/sys/stat.c
index d1b2629..da55e0c 100644
--- a/com32/lib/sys/stat.c
+++ b/com32/lib/sys/stat.c
@@ -28,7 +28,9 @@
/*
* stat.c
*
- * Very trivial stat emulation by using open(), fstat(), close()
+ * Very trivial stat emulation by using open(), then either fstat() and
+ * close() or opendir() and closedir(). Probably more expens...