diff options
author | Marcus Brinkmann <marcus@gnu.org> | 2002-03-05 01:28:59 +0000 |
---|---|---|
committer | Marcus Brinkmann <marcus@gnu.org> | 2002-03-05 01:28:59 +0000 |
commit | 7c66508fb414b4d9271e0772c67d4e6383d912e2 (patch) | |
tree | b1de113bbc40a1f56124d5f7ef12bac7e98cdfd6 /libfshelp | |
parent | f982f85f5c0fabb2e766267d9ce41be538f37407 (diff) | |
download | hurd-7c66508fb414b4d9271e0772c67d4e6383d912e2.tar.gz hurd-7c66508fb414b4d9271e0772c67d4e6383d912e2.tar.bz2 hurd-7c66508fb414b4d9271e0772c67d4e6383d912e2.zip |
doc/
2002-03-05 Marcus Brinkmann <marcus@gnu.org>
* hurd.texi (Diskfs Callbacks): Refer to dir_lookup, not dir_pathtrans.
Reported by James A Morrison <ja2morri@student.math.uwaterloo.ca>.
fstests/
2002-03-05 Marcus Brinkmann <marcus@gnu.org>
* fstests.c (main): Call dir_lookup, not dir_pathtrans.
Reported by James A Morrison <ja2morri@student.math.uwaterloo.ca>.
hurd/
2002-03-05 Marcus Brinkmann <marcus@gnu.org>
* fs.defs: Refer to dir_lookup, not dir_pathtrans, in comments.
* fsys.defs: Likewise.
* hurd_types.h (enum retry_type): Likewise.
Reported by James A Morrison <ja2morri@student.math.uwaterloo.ca>.
libdiskfs/
2002-03-05 Marcus Brinkmann <marcus@gnu.org>
* diskfs.h: Refer to dir_lookup, not dir_pathtrans, in comment.
* fsys-getroot.c (diskfs_S_fsys_getroot): Likewise.
Reported by James A Morrison <ja2morri@student.math.uwaterloo.ca>.
libfshelp/
2002-03-05 Marcus Brinkmann <marcus@gnu.org>
* fshelp.h: Refer to dir_lookup, not dir_pathtrans, in comment.
Reported by James A Morrison <ja2morri@student.math.uwaterloo.ca>.
Diffstat (limited to 'libfshelp')
-rw-r--r-- | libfshelp/ChangeLog | 5 | ||||
-rw-r--r-- | libfshelp/fshelp.h | 12 |
2 files changed, 11 insertions, 6 deletions
diff --git a/libfshelp/ChangeLog b/libfshelp/ChangeLog index b715c720..38cd25c3 100644 --- a/libfshelp/ChangeLog +++ b/libfshelp/ChangeLog @@ -1,3 +1,8 @@ +2002-03-05 Marcus Brinkmann <marcus@gnu.org> + + * fshelp.h: Refer to dir_lookup, not dir_pathtrans, in comment. + Reported by James A Morrison <ja2morri@student.math.uwaterloo.ca>. + 2002-01-02 Roland McGrath <roland@frob.com> * start-translator-long.c (fshelp_start_translator_long) diff --git a/libfshelp/fshelp.h b/libfshelp/fshelp.h index 88f63b69..8b395dd9 100644 --- a/libfshelp/fshelp.h +++ b/libfshelp/fshelp.h @@ -1,5 +1,5 @@ /* FS helper library definitions - Copyright (C) 1994,95,96,97,98,99,2000,01 Free Software Foundation, Inc. + Copyright (C) 1994,95,96,97,98,99,2000,01,02 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 @@ -121,11 +121,11 @@ typedef error_t (*fshelp_fetch_root_callback2_t) (void *cookie1, void *cookie2, /* Fetch the root from TRANSBOX. DOTDOT is an unauthenticated port for the directory in which we are looking; USER specifies the ids - of the user responsible for the call. FLAGS are as for - dir_pathtrans (but O_CREAT and O_EXCL are not meaningful and are - ignored). The trasnbox lock (as set by fshelp_transbox_init) must - be held before the call, and will be held upon return, but may be - released during the operation of the call. */ + of the user responsible for the call. FLAGS are as for dir_lookup + (but O_CREAT and O_EXCL are not meaningful and are ignored). The + transbox lock (as set by fshelp_transbox_init) must be held before + the call, and will be held upon return, but may be released during + the operation of the call. */ error_t fshelp_fetch_root (struct transbox *transbox, void *cookie, file_t dotdot, |