Lines 103-108
Link Here
|
103 |
{ MNT_NOEXEC, "noexec" }, |
103 |
{ MNT_NOEXEC, "noexec" }, |
104 |
{ MNT_NOSUID, "nosuid" }, |
104 |
{ MNT_NOSUID, "nosuid" }, |
105 |
{ MNT_NOSYMFOLLOW, "nosymfollow" }, |
105 |
{ MNT_NOSYMFOLLOW, "nosymfollow" }, |
|
|
106 |
{ MNT_NOSOCKBIND, "nosockbind" }, |
106 |
{ MNT_QUOTA, "with quotas" }, |
107 |
{ MNT_QUOTA, "with quotas" }, |
107 |
{ MNT_RDONLY, "read-only" }, |
108 |
{ MNT_RDONLY, "read-only" }, |
108 |
{ MNT_SYNCHRONOUS, "synchronous" }, |
109 |
{ MNT_SYNCHRONOUS, "synchronous" }, |
Lines 975-980
Link Here
|
975 |
if (flags & MNT_ACLS) res = catopt(res, "acls"); |
976 |
if (flags & MNT_ACLS) res = catopt(res, "acls"); |
976 |
if (flags & MNT_NFS4ACLS) res = catopt(res, "nfsv4acls"); |
977 |
if (flags & MNT_NFS4ACLS) res = catopt(res, "nfsv4acls"); |
977 |
if (flags & MNT_UNTRUSTED) res = catopt(res, "untrusted"); |
978 |
if (flags & MNT_UNTRUSTED) res = catopt(res, "untrusted"); |
|
|
979 |
if (flags & MNT_NOSOCKBIND) res = catopt(res, "nosockbind"); |
978 |
|
980 |
|
979 |
return (res); |
981 |
return (res); |
980 |
} |
982 |
} |