summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libtrivfs/ChangeLog5
-rw-r--r--libtrivfs/io-pathconf.c7
2 files changed, 7 insertions, 5 deletions
diff --git a/libtrivfs/ChangeLog b/libtrivfs/ChangeLog
index 51e946e4..973f4ece 100644
--- a/libtrivfs/ChangeLog
+++ b/libtrivfs/ChangeLog
@@ -1,3 +1,8 @@
+Thu Aug 15 16:14:33 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
+
+ * io-pathconf.c (trivfs_S_io_pathconf): Implement by calling
+ underlying node.
+
Thu Jul 18 23:14:44 1996 Michael I. Bushnell, p/BSG <mib@gnu.ai.mit.edu>
* io-reauthenticate.c (trivfs_S_io_reauthenticate): Use noinstall
diff --git a/libtrivfs/io-pathconf.c b/libtrivfs/io-pathconf.c
index 658e249c..c24e1801 100644
--- a/libtrivfs/io-pathconf.c
+++ b/libtrivfs/io-pathconf.c
@@ -1,5 +1,5 @@
/*
- Copyright (C) 1994 Free Software Foundation
+ Copyright (C) 1994, 1996 Free Software Foundation
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
@@ -24,10 +24,7 @@ trivfs_S_io_pathconf (struct trivfs_protid *cred,
int name, int *val)
{
if (cred)
- {
- *val = 0;
- return 0;
- }
+ return io_pathconf (cred->realnode, name, val);
else
return EOPNOTSUPP;
}