PERFORCE change 92982 for review
Robert Watson
rwatson at FreeBSD.org
Wed Mar 8 13:02:28 PST 2006
http://perforce.freebsd.org/chv.cgi?CH=92982
Change 92982 by rwatson at rwatson_peppercorn on 2006/03/08 21:01:51
For the time being, ignore the label argument when mounting UFS.
Future integrations will bring in the conversion of mount_ufs to
nmount().
Affected files ...
.. //depot/projects/trustedbsd/sebsd/sbin/mount/mount_ufs.c#6 edit
Differences ...
==== //depot/projects/trustedbsd/sebsd/sbin/mount/mount_ufs.c#6 (text+ko) ====
@@ -106,6 +106,7 @@
else
args.export.ex_flags = 0;
+#if 0
if (ltext) {
mac_t mac;
rc = mac_from_text(&mac, ltext);
@@ -115,9 +116,9 @@
}
rc = lmount("ufs", fs_name, mntflags, &args, mac);
- }
- else
- rc = mount("ufs", fs_name, mntflags, &args);
+ } else
+#endif
+ rc = mount("ufs", fs_name, mntflags, &args);
if (rc < 0) {
switch (errno) {
More information about the trustedbsd-cvs
mailing list