mntstrdup
mnt->mnt_fsname = mntstrdup(vfs.vfs_special);
mnt->mnt_dir = mntstrdup(vfs.vfs_mountp);
mnt->mnt_type = mntstrdup(vfs.vfs_fstype);
mnt->mnt_opts = mntstrdup(vfs.vfs_mntopts);
new->mnt_fsname = mntstrdup(mnt->mnt_fsname); /* mnt_special */
new->mnt_dir = mntstrdup(mnt->mnt_dir); /* mnt_mountp */
new->mnt_type = mntstrdup(mnt->mnt_type); /* mnt_fstype */
new->mnt_opts = mntstrdup(mnt->mnt_opts); /* mnt_mntopts */