Date: Wed, 8 Mar 2006 21:01:56 GMT From: Robert Watson <rwatson@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 92982 for review Message-ID: <200603082101.k28L1uah040512@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=92982 Change 92982 by rwatson@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) {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200603082101.k28L1uah040512>