diff options
author | Roland McGrath <roland@gnu.org> | 2002-05-08 09:56:54 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-05-08 09:56:54 +0000 |
commit | ac081bb7164e3e633bb1f05aebac4e5acede361a (patch) | |
tree | b51b7fb067e587133cf76d9f867e5b231c34d38f /libdiskfs/file-getfh.c | |
parent | be1221b667c49233935f487d125ba8147aa1c84d (diff) | |
download | hurd-ac081bb7164e3e633bb1f05aebac4e5acede361a.tar.gz hurd-ac081bb7164e3e633bb1f05aebac4e5acede361a.tar.bz2 hurd-ac081bb7164e3e633bb1f05aebac4e5acede361a.zip |
2002-05-08 Roland McGrath <roland@frob.com>
* diskfs.h (diskfs_append_args): unsigned -> size_t in argument type.
(diskfs_append_std_options): Likewise.
(diskfs_get_directs): Likewise.
* file-exec.c (diskfs_S_file_exec): Likewise.
* file-get-fs-opts.c (diskfs_S_file_get_fs_options): Likewise.
* file-get-trans.c (diskfs_S_file_get_translator): Likewise.
* file-getfh.c (diskfs_S_file_getfh): Likewise.
* file-set-trans.c (diskfs_S_file_set_translator): Likewise.
* fsys-getroot.c (diskfs_S_fsys_getroot): Likewise.
* io-restrict-auth.c (diskfs_S_io_restrict_auth): Likewise.
* opts-append-std.c (diskfs_append_std_options): Likewise.
* opts-get.c (diskfs_append_args): Likewise.
* dir-readdir.c (diskfs_S_dir_readdir): Likewise.
Diffstat (limited to 'libdiskfs/file-getfh.c')
-rw-r--r-- | libdiskfs/file-getfh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libdiskfs/file-getfh.c b/libdiskfs/file-getfh.c index 65029c1a..2dcf68e5 100644 --- a/libdiskfs/file-getfh.c +++ b/libdiskfs/file-getfh.c @@ -1,6 +1,6 @@ /* Return a file handle (for nfs server support) - Copyright (C) 1997, 1999 Free Software Foundation + Copyright (C) 1997,99,2002 Free Software Foundation, Inc. This file is part of the GNU Hurd. @@ -26,7 +26,7 @@ /* Return an NFS file handle for CRED in FH & FN_LEN. */ error_t -diskfs_S_file_getfh (struct protid *cred, char **fh, unsigned *fh_len) +diskfs_S_file_getfh (struct protid *cred, char **fh, size_t *fh_len) { struct node *node; union diskfs_fhandle *f; |