diff options
author | Thomas Bushnell <thomas@gnu.org> | 1996-10-08 16:20:39 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1996-10-08 16:20:39 +0000 |
commit | d25e8e0bd649f8fb21adbf2a27fd82f8fa81ecac (patch) | |
tree | 9e03f8280be7ea82dcf7d2f9327fcdac4e67a907 | |
parent | b67436f8411e8155c8b9a15f7d39751cd72248a1 (diff) |
Thu Sep 26 14:09:20 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* nfsd.h (enum_t): New type.
* cache.c: Don't inclide <rpc/auth_unix.h>.
-rw-r--r-- | nfsd/ChangeLog | 6 | ||||
-rw-r--r-- | nfsd/cache.c | 1 | ||||
-rw-r--r-- | nfsd/nfsd.h | 1 |
3 files changed, 7 insertions, 1 deletions
diff --git a/nfsd/ChangeLog b/nfsd/ChangeLog index a19323e9..91170a5c 100644 --- a/nfsd/ChangeLog +++ b/nfsd/ChangeLog @@ -1,3 +1,9 @@ +Thu Sep 26 14:09:20 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> + + * nfsd.h (enum_t): New type. + + * cache.c: Don't inclide <rpc/auth_unix.h>. + Thu Sep 12 16:52:13 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> * Makefile (HURDLIBS): New variable. diff --git a/nfsd/cache.c b/nfsd/cache.c index 29e64834..4230c24f 100644 --- a/nfsd/cache.c +++ b/nfsd/cache.c @@ -33,7 +33,6 @@ #define malloc spoogie_woogie /* ugh^2. */ #include <rpc/types.h> #include <rpc/auth.h> -#include <rpc/auth_unix.h> #undef malloc #define IDHASH_TABLE_SIZE 1024 diff --git a/nfsd/nfsd.h b/nfsd/nfsd.h index b225c1cd..57aac273 100644 --- a/nfsd/nfsd.h +++ b/nfsd/nfsd.h @@ -19,6 +19,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. */ typedef int bool_t; +typedef int enum_t; #include <sys/types.h> #include <sys/socket.h> |