# HG changeset patch # User Franz Glasner # Date 1727708142 -7200 # Node ID 6e7c118e7d47595a0faf15791a436fa328ee3473 # Parent cafc0069f0954af8f3ac2cd6fcea3cfdffa07077 fzfs: FIX: "fzfs umount" did not properly parse "mount -p" properly. The rest of the line was merged into the mountpoint field. diff -r cafc0069f095 -r 6e7c118e7d47 sbin/fzfs --- a/sbin/fzfs Mon Sep 30 15:49:01 2024 +0200 +++ b/sbin/fzfs Mon Sep 30 16:55:42 2024 +0200 @@ -316,7 +316,7 @@ _get_zfs_mounts_for_dataset_tree -r "${_dsname}" \ | { - while IFS=$'\t' read -r _name _mp ; do + while IFS=$'\t' read -r _name _mp _rest; do if checkyes _opt_dry_run ; then if [ -z "${_opt_force}" ]; then echo "Would umount ${_name} from ${_mp}"