URI: 
       tremove base2 notation for flags - tomb - the crypto undertaker
  HTML git clone git://parazyd.org/tomb.git
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit dac8e4acae1d05263e62ccb0407e960712a23720
   DIR parent 788c133f94adb27e2782559ba35d96286752b3f8
  HTML 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:
         M tomb                                |      10 +++++-----
       
       1 file changed, 5 insertions(+), 5 deletions(-)
       ---
   DIR diff --git a/tomb b/tomb
       t@@ -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"