mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Remove extraneous semicolons trailing break and continue statements.
This commit is contained in:
parent
b710d4c85a
commit
e50daba0e4
1 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||
;;
|
||||
|
|
|
|||
Loading…
Reference in a new issue