summaryrefslogtreecommitdiffstats
path: root/src/H5Flow.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Flow.c')
-rw-r--r--src/H5Flow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Flow.c b/src/H5Flow.c
index 53124b1..31ba501 100644
--- a/src/H5Flow.c
+++ b/src/H5Flow.c
@@ -498,9 +498,9 @@ H5F_low_access(const H5F_low_class_t *type, const char *name,
ret_value = (type->access) (name, access_parms, mode, key /*out*/);
} else {
- ret_value = (0 == access(name, mode) ? TRUE : FALSE);
+ ret_value = (0 == HDaccess(name, mode) ? TRUE : FALSE);
if (key) {
- stat(name, &sb);
+ HDstat(name, &sb);
key->dev = sb.st_dev;
key->ino = sb.st_ino;
}