diff options
author | Roland McGrath <roland@gnu.org> | 2002-05-28 23:58:13 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-05-28 23:58:13 +0000 |
commit | 0d17dcfc272f9fd69549514d066fc18c9713649e (patch) | |
tree | 07b7848f7b67c5f149d760c02b4c6bd33b67422d /libtrivfs/dir-readdir.c | |
parent | 375500381b9ebf2a44f3fe7a23c5b9aa8be7ec61 (diff) | |
download | hurd-0d17dcfc272f9fd69549514d066fc18c9713649e.tar.gz hurd-0d17dcfc272f9fd69549514d066fc18c9713649e.tar.bz2 hurd-0d17dcfc272f9fd69549514d066fc18c9713649e.zip |
2002-05-28 Roland McGrath <roland@frob.com>
* dir-readdir.c (trivfs_S_dir_readdir): u_int -> size_t
* file-get-trans.c (trivfs_S_file_get_translator): Likewise.
* file-set-trans.c (trivfs_S_file_set_translator): Likewise.
* file-getfh.c (trivfs_S_file_getfh): Likewise.
* fsys-getroot.c (trivfs_S_fsys_getroot): Likewise.
* io-restrict-auth.c (trivfs_S_io_restrict_auth): Likewise
* fsys-stubs.c (trivfs_S_fsys_getfile): Likewise.
(trivfs_S_fsys_startup): Fix argument type.
Diffstat (limited to 'libtrivfs/dir-readdir.c')
-rw-r--r-- | libtrivfs/dir-readdir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libtrivfs/dir-readdir.c b/libtrivfs/dir-readdir.c index eebfabc8..62108995 100644 --- a/libtrivfs/dir-readdir.c +++ b/libtrivfs/dir-readdir.c @@ -1,5 +1,5 @@ /* - Copyright (C) 1994, 1999 Free Software Foundation, Inc. + Copyright (C) 1994,99, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -22,7 +22,7 @@ kern_return_t trivfs_S_dir_readdir (struct trivfs_protid *cred, mach_port_t reply, mach_msg_type_name_t reply_type, char **data, - u_int *datalen, + size_t *datalen, boolean_t *data_dealloc, int entry, int nentries, |