diff options
-rw-r--r-- | TODO | 2 | ||||
-rw-r--r-- | exec/ChangeLog | 2 | ||||
-rw-r--r-- | isofs/inode.c | 3 |
3 files changed, 4 insertions, 3 deletions
@@ -89,6 +89,8 @@ See `tasks', the exported task list. can call. ** libdiskfs +*** file_chflags does not do proper permission checking (non-root isn't + supposed to be able to change the low bits) *** Add the short-circuited-but-not-builtin translator startup code from dir-lookup to fsys_getroot. Compare and match carefully these two routines and then share common code. !! diff --git a/exec/ChangeLog b/exec/ChangeLog index 40a07209..7996cc92 100644 --- a/exec/ChangeLog +++ b/exec/ChangeLog @@ -1,6 +1,6 @@ Thu Nov 5 15:26:50 1998 Thomas Bushnell, BSG <tb@mit.edu> - * hashexec.c (check_hashbang): Keep INTERP_LEN with a the correct + * hashexec.c (check_hashbang): Keep INTERP_LEN with the correct value (bytes of memory holding INTERP) for later use. (check_hashbang: setup_args): Set argv[0] from the interpreter name, not copied from the existing command line. diff --git a/isofs/inode.c b/isofs/inode.c index 1f30ffd7..cba3e691 100644 --- a/isofs/inode.c +++ b/isofs/inode.c @@ -1,4 +1,4 @@ -/* +/* Copyright (C) 1997, 1998 Free Software Foundation, Inc. Written by Thomas Bushnell, n/BSG. @@ -309,7 +309,6 @@ read_disknode (struct node *np, struct dirrect *dr, { error_t err; struct stat *st = &np->dn_stat; - st->st_fstype = FSTYPE_ISO9660; st->st_fsid = getpid (); st->st_ino = np->dn->file_start; |