Remove extraneous semicolons trailing break and continue statements.

This commit is contained in:
Jens Schweikhardt 2022-03-29 19:43:00 +02:00
parent b710d4c85a
commit e50daba0e4

View File

@ -1619,7 +1619,7 @@ for pool in ${pools}; do
if [ "${pool}" = "${ZFSBOOT_POOL_NAME}" ]; then
f_dprintf "Pool ${pool} already taken"
ZFSBOOT_POOL_NAME=$(dialog_zpool_name "${ZFSBOOT_POOL_NAME}")
break;
break
fi
done
@ -1809,14 +1809,14 @@ while :; do
if [ $swapsize -ne 0 -a $swapsize -lt 104857600 ]; then
f_show_err "$msg_swap_toosmall" \
"$ZFSBOOT_SWAP_SIZE"
continue;
continue
else
break;
break
fi
else
f_show_err "$msg_swap_invalid" \
"$ZFSBOOT_SWAP_SIZE"
continue;
continue
fi
done
;;