tfix for #165 - tomb - the crypto undertaker
 (HTM) git clone git://parazyd.org/tomb.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit c0bd8223126feeb0046527a0793a0c24b2b4b7c3
 (DIR) parent ba39aef6738f8a1c6ce9ba817cbd99c59eb7a6b0
 (HTM) Author: Jaromil <jaromil@dyne.org>
       Date:   Sun, 23 Nov 2014 16:26:00 +0100
       
       fix for #165
       
       Diffstat:
         M tomb                                |       8 ++++----
       
       1 file changed, 4 insertions(+), 4 deletions(-)
       ---
 (DIR) diff --git a/tomb b/tomb
       t@@ -727,7 +727,7 @@ _ensure_dependencies() {
                PINENTRY=(`awk '
        /^pinentry-program/ { for(c=2;c<=NF;c++) printf("%s ", $c) }
        ' $HOME/.gnupg/gpg-agent.conf`)
       -        _message "gpg-agent choice of pinentry: ::1 pinentry::" "${PINENTRY}" }
       +        _verbose "gpg-agent choice of pinentry: ::1 pinentry::" "${PINENTRY}" }
        
            # Check for filesystem creation programs
            command -v mkfs.ext4 1>/dev/null 2>/dev/null && MKFS=(mkfs.ext4 -q -F -j -L)
       t@@ -1318,7 +1318,7 @@ dig_tomb() {
        
            [[ -e $TOMBPATH ]] && {
                _warning "A tomb exists already. I'm not digging here:"
       -        _warning "  $(ls -lh $TOMBPATH)"
       +        ls -lh $TOMBPATH
                return 1
            }
        
       t@@ -1335,7 +1335,7 @@ dig_tomb() {
            ${=DD} if=/dev/urandom bs=1048576 count=$tombsize of=$TOMBPATH
        
            [[ $? == 0 && -e $TOMBPATH ]] && {
       -        _message "  $(ls -lh $TOMBPATH)"
       +        ls -lh $TOMBPATH
            } || {
                _warning "Error creating the tomb ::1 tomb path::" $TOMBPATH
                _failure "Operation aborted."
       t@@ -1372,7 +1372,7 @@ forge_key() {
            # Do not overwrite any files accidentally
            [[ -r "$destkey" ]] && {
                _warning "Forging this key would overwrite an existing file. Operation aborted."
       -        _failure "`ls -lh $destkey`" }
       +        ls -lh $destkey
        
            # Update algorithm if it was passed on the command line with -o
            { option_is_set -o } && { algopt="$(option_value -o)" }