diff options
author | Roland McGrath <roland@gnu.org> | 2002-05-08 09:29:13 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-05-08 09:29:13 +0000 |
commit | 9bd09e059b715971c804e7ee406fbfa1cde25a7e (patch) | |
tree | 9eb0265c116ea77bd62a443418455193c9d4342e /nfsd/loop.c | |
parent | 4429f5ee4d22d127bed28b4866ce4272c073de61 (diff) | |
download | hurd-9bd09e059b715971c804e7ee406fbfa1cde25a7e.tar.gz hurd-9bd09e059b715971c804e7ee406fbfa1cde25a7e.tar.bz2 hurd-9bd09e059b715971c804e7ee406fbfa1cde25a7e.zip |
2002-05-07 Roland McGrath <roland@frob.com>
* loop.c (server_loop): size_t -> socklen_t
* cache.c (fh_hash): int -> intptr_t
Diffstat (limited to 'nfsd/loop.c')
-rw-r--r-- | nfsd/loop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nfsd/loop.c b/nfsd/loop.c index 6af6381c..8f21b105 100644 --- a/nfsd/loop.c +++ b/nfsd/loop.c @@ -1,5 +1,5 @@ /* Main server loop for nfs server. - Copyright (C) 1996, 98 Free Software Foundation, Inc. + Copyright (C) 1996,98,2002 Free Software Foundation, Inc. Written by Michael I. Bushnell, p/BSG. This file is part of the GNU Hurd. @@ -52,7 +52,7 @@ server_loop (int fd) struct idspec *cred; struct cache_handle *c, fakec; error_t err; - size_t addrlen; + socklen_t addrlen; int cc; bzero (&fakec, sizeof (struct cache_handle)); |