[6331] in Athena Bugs
attach
daemon@ATHENA.MIT.EDU (Joe Harrington)
Sun Nov 4 22:46:11 1990
Date: Sun, 4 Nov 90 22:45:49 -0500
From: Joe Harrington <jh@ATHENA.MIT.EDU>
To: bugs@ATHENA.MIT.EDU, epeisach@mit.edu
Cc: jh@MIT.EDU
Reply-To: jh@MIT.EDU
there is an #ifdef AFS missing in main.c. here's a patch:
% diff -c main.c main.athena.c
*** main.c Sun Nov 4 22:40:55 1990
--- main.athena.c Fri Jul 20 14:50:33 1990
***************
*** 313,324 ****
continue;
}
gotname++;
- #ifdef AFS
if (cell_sw) {
afs_auth_to_cell(argv[i]);
! } else
! #endif
! if (filsysp) {
/*
* Lookup the specified filsys name and perform an nfsid
* on the host associated with it.
--- 313,321 ----
continue;
}
gotname++;
if (cell_sw) {
afs_auth_to_cell(argv[i]);
! } else if (filsysp) {
/*
* Lookup the specified filsys name and perform an nfsid
* on the host associated with it.
%
--jh--