1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

Do not place dirmask in unnamed padding. Move it to the bottom of this

list where it should have been added originally.

Prodded by:	bde
This commit is contained in:
Tom Rhodes 2004-02-17 16:53:41 +00:00
parent da0f40995d
commit 01ba334c9a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=125942

View File

@ -213,13 +213,13 @@ struct msdosfs_args {
uid_t uid; /* uid that owns msdosfs files */
gid_t gid; /* gid that owns msdosfs files */
mode_t mask; /* file mask to be applied for msdosfs perms */
mode_t dirmask; /* dir mask to be applied for msdosfs perms */
int flags; /* see below */
int magic; /* version number */
u_int16_t u2w[128]; /* Local->Unicode table */
char *cs_win; /* Windows(Unicode) Charset */
char *cs_dos; /* DOS Charset */
char *cs_local; /* Local Charset */
mode_t dirmask; /* dir mask to be applied for msdosfs perms */
};
/*