summaryrefslogtreecommitdiff
path: root/libdiskfs/io-pathconf.c
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1995-09-18 18:22:36 +0000
committerMiles Bader <miles@gnu.org>1995-09-18 18:22:36 +0000
commitd78bfcce8851e3f8546bb91661142ebeb13c3297 (patch)
treede1f77d3609134203186c1bd79a41fe8ee6011f8 /libdiskfs/io-pathconf.c
parent408e532f0f875afcf2969abd6ce8395485f1b4bd (diff)
(diskfs_S_io_pathconf): Renamed from file_pathconf.c:diskfs_S_file_pathconf.
Diffstat (limited to 'libdiskfs/io-pathconf.c')
-rw-r--r--libdiskfs/io-pathconf.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/libdiskfs/io-pathconf.c b/libdiskfs/io-pathconf.c
index c26f0d47..0b80b14e 100644
--- a/libdiskfs/io-pathconf.c
+++ b/libdiskfs/io-pathconf.c
@@ -1,4 +1,4 @@
-/* libdiskfs implementation of fs.defs: file_pathconf
+/* libdiskfs implementation of io.defs: io_pathconf
Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation
This program is free software; you can redistribute it and/or
@@ -16,17 +16,15 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "priv.h"
-#include "fs_S.h"
+#include "io_S.h"
-/* Implement file_pathconf as described in <hurd/fs.defs>. */
+/* Implement io_pathconf as described in <hurd/io.defs>. */
kern_return_t
-diskfs_S_file_pathconf (struct protid *cred,
- int name __attribute__ ((unused)),
- int *value)
- {
+diskfs_S_io_pathconf (struct protid *cred,
+ int name __attribute__ ((unused)), int *value)
+{
if (!cred)
return EOPNOTSUPP;
-
*value = 0; /* XXX */
return 0;
}