aboutsummaryrefslogtreecommitdiffstats
path: root/pc
diff options
context:
space:
mode:
Diffstat (limited to 'pc')
-rw-r--r--pc/ChangeLog7
-rw-r--r--pc/gawkmisc.pc9
2 files changed, 8 insertions, 8 deletions
diff --git a/pc/ChangeLog b/pc/ChangeLog
index 28dfb72b..57ffabe6 100644
--- a/pc/ChangeLog
+++ b/pc/ChangeLog
@@ -1,6 +1,11 @@
+2012-08-08 Arnold D. Robbins <arnold@skeeve.com>
+
+ * gawkmisc.pc (os_isreadable): Take IOBUF_PUBLIC instead of fd and
+ use passed in info.
+
2012-07-29 Arnold D. Robbins <arnold@skeeve.com>
- * gawkmisc.c (os_isreadable): Add isdir pointer parameter to be
+ * gawkmisc.pc (os_isreadable): Add isdir pointer parameter to be
set to true if fd is for a directory.
2012-07-26 Arnold D. Robbins <arnold@skeeve.com>
diff --git a/pc/gawkmisc.pc b/pc/gawkmisc.pc
index d79a3207..e2f114e4 100644
--- a/pc/gawkmisc.pc
+++ b/pc/gawkmisc.pc
@@ -235,16 +235,11 @@ int fd;
/* os_isreadable --- fd can be read from */
int
-os_isreadable(int fd, bool *isdir)
+os_isreadable(const IOBUF_PUBLIC *iobuf, bool *isdir)
{
- struct stat sbuf;
-
*isdir = false;
- if (fstat(fd, &sbuf) != 0)
- return false;
-
- switch (sbuf.st_mode & S_IFMT) {
+ switch (iobuf->sbuf.st_mode & S_IFMT) {
case S_IFREG:
case S_IFCHR: /* ttys, /dev/null, .. */
#ifdef S_IFSOCK