Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F159208415
D27801.id81384.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
878 B
Referenced Files
None
Subscribers
None
D27801.id81384.diff
View Options
Index: usr.sbin/autofs/automount.c
===================================================================
--- usr.sbin/autofs/automount.c
+++ usr.sbin/autofs/automount.c
@@ -88,21 +88,14 @@
unmount_by_umount(struct statfs* sfp, bool force)
{
FILE *f;
- char fsid[sizeof(sfp->f_fsid)*2+1];
- size_t i;
if (sfp->f_fsid.val[0] == 0 || sfp->f_fsid.val[1] == 0)
return (-1);
- /* umount(8) expects the file system ID to be in hexadecimal format */
- for (i = 0; i < sizeof(sfp->f_fsid); i++)
- snprintf(fsid+strlen(fsid), sizeof(fsid) - strlen(fsid),
- "%02x", ((u_char *)&sfp->f_fsid)[i]);
-
if (force)
- f = auto_popen("umount", "-f", fsid, NULL);
+ f = auto_popen("umount", "-f", sfp->f_mntfromname, NULL);
else
- f = auto_popen("umount", fsid, NULL);
+ f = auto_popen("umount", sfp->f_mntfromname, NULL);
assert(f != NULL);
return (auto_pclose(f));
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Jun 12, 8:54 AM (14 h, 38 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
33903537
Default Alt Text
D27801.id81384.diff (878 B)
Attached To
Mode
D27801: automount(8): try umount(8) before unmount(3)
Attached
Detach File
Event Timeline
Log In to Comment