diff options
-rw-r--r-- | TODO | 3 | ||||
-rw-r--r-- | nfs/ChangeLog | 5 | ||||
-rw-r--r-- | nfs/ops.c | 2 | ||||
-rw-r--r-- | release/checklist | 6 |
4 files changed, 10 insertions, 6 deletions
@@ -59,7 +59,6 @@ See `tasks', the exported task list. ** libshouldbeinlibc: *** Merge contents of libshouldbeinlibc that belong there into libc. Rename the rest to libhurdutil or somesuch. -*** debug linewrap.c (in libshouldbeinlibc temporarily) *** argp: finde some way to flag certain long options as only matching exactly (add this as OPT_EXACT); use this on the built in option --program-name. @@ -131,6 +130,7 @@ See `tasks', the exported task list. *** Add proc_get_tty() [returns tty opened with no flags], so that ps can be non-suid. *** Remove hostname/hostid functions +*** add timeouts to all the msg_* calls proc makes. ** pfinet *** Allow multiple pfinets to arp on the same ethernet interface for different @@ -225,7 +225,6 @@ See `tasks', the exported task list. * TODO for version 0.0: -** Bug: GDB as non-root ** Compile released libc. ** Compile released utilities. (See SOURCES-0.0) ** Make serverboot source tar and build instructions. diff --git a/nfs/ChangeLog b/nfs/ChangeLog index 5a22fdf2..e213507e 100644 --- a/nfs/ChangeLog +++ b/nfs/ChangeLog @@ -1,3 +1,8 @@ +Wed Jul 31 13:25:00 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> + + * ops.c (netfs_attempt_statfs): Use NFSPROC_STATFS, not SETATTR to + do a statfs. + Tue Jul 23 19:41:07 1996 Miles Bader <miles@gnu.ai.mit.edu> * nfs.c (xdr_encode_sattr_times): `struct timespec' now uses a @@ -264,7 +264,7 @@ netfs_attempt_statfs (struct netcred *cred, struct node *np, void *rpcbuf; error_t err; - p = nfs_initialize_rpc (NFSPROC_SETATTR, cred, 0, &rpcbuf, np, -1); + p = nfs_initialize_rpc (NFSPROC_STATFS, cred, 0, &rpcbuf, np, -1); p = xdr_encode_fhandle (p, &np->nn->handle); err = conduct_rpc (&rpcbuf, &p); diff --git a/release/checklist b/release/checklist index 98478a77..021b03fc 100644 --- a/release/checklist +++ b/release/checklist @@ -10,9 +10,9 @@ o Make /info/dir o Source code for Hurd and libc must be released. o Make sure everything listed in SOURCES is on prep. o Remove .stamp files from binary tree. -o Make everything root.wheel, mode 755/644. -o Make /games games.daemon. [no, don't do this; things should be sguidable] -o Check permissions on setuid files in binary tree. +o Chown everything root.wheel, mode 755/644. +o Chown /games games.games. +o Check permissions on set[gu]id files in binary tree. (login, ps, w, vmstat, rsh, rlogin, games/lib/nethack/nethack) o Check each directory for bogus cruft files. o Especially delete .bash_history, .gnunfs*, and .stamp files. |