tomb

the crypto undertaker
git clone git://parazyd.org/tomb.git
Log | Files | Refs | README | LICENSE

commit dac8e4acae1d05263e62ccb0407e960712a23720
parent 788c133f94adb27e2782559ba35d96286752b3f8
Author: Jaromil <jaromil@dyne.org>
Date:   Wed, 29 Oct 2014 14:26:43 +0100

remove base2 notation for flags

fixes bug that prevented to evaluate correctly 1/0 values for optional extensions

Diffstat:
Mtomb | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/tomb b/tomb @@ -58,11 +58,11 @@ WIPE=(rm -f) MKFS=(mkfs.ext3 -q -F -j -L) # Flag optional commands if available (see _ensure_dependencies()) -typeset -i 2 KDF=1 -typeset -i 2 STEGHIDE=1 -typeset -i 2 RESIZER=1 -typeset -i 2 SWISH=1 -typeset -i 2 QRENCODE=1 +typeset -i KDF=1 +typeset -i STEGHIDE=1 +typeset -i RESIZER=1 +typeset -i SWISH=1 +typeset -i QRENCODE=1 # Default mount options typeset MOUNTOPTS="rw,noatime,nodev"