From: rhatto Date: Sun, 25 Sep 2005 16:47:22 +0000 (+0000) Subject: fix in unsettin variables ('unset $var' should be 'unset var') X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=39c08f6c450550b436506d1ac93f8e00e60ef916;p=firma.git fix in unsettin variables ('unset $var' should be 'unset var') --- diff --git a/firma b/firma index 0e389fb..964c552 100755 --- a/firma +++ b/firma @@ -898,10 +898,10 @@ esac # erase all global arrays and variables for ARRAY in $GLOBAL_ARRAYS; do - unset $ARRAY + unset ARRAY done for VAR in $GLOBAL_VARS; do - unset $VAR + unset VAR done