mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-14 06:12:01 +01:00
Fix comment containing vop_readdir_args contents: a_cookies is really
u_long ** not u_long *.
This commit is contained in:
parent
224f219b31
commit
f71cc8681b
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=126133
@ -430,7 +430,7 @@ cd9660_readdir(ap)
|
||||
struct ucred *a_cred;
|
||||
int *a_eofflag;
|
||||
int *a_ncookies;
|
||||
u_long *a_cookies;
|
||||
u_long **a_cookies;
|
||||
} */ *ap;
|
||||
{
|
||||
struct uio *uio = ap->a_uio;
|
||||
|
@ -430,7 +430,7 @@ cd9660_readdir(ap)
|
||||
struct ucred *a_cred;
|
||||
int *a_eofflag;
|
||||
int *a_ncookies;
|
||||
u_long *a_cookies;
|
||||
u_long **a_cookies;
|
||||
} */ *ap;
|
||||
{
|
||||
struct uio *uio = ap->a_uio;
|
||||
|
Loading…
Reference in New Issue
Block a user