diff options
author | Thomas Bushnell <thomas@gnu.org> | 1996-08-15 20:18:07 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1996-08-15 20:18:07 +0000 |
commit | 6436e3dfe7702d3f4f92379e1815c161ea930418 (patch) | |
tree | c9e5ade251f0780a9d37ed0d2f59b09264c60a80 | |
parent | 779155233dc52c9df16feca71868f08b4b108def (diff) |
*** empty log message ***
-rw-r--r-- | libtrivfs/ChangeLog | 5 | ||||
-rw-r--r-- | libtrivfs/io-pathconf.c | 7 |
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; } |