Commit 2ce87fe2 authored by bruncsak's avatar bruncsak Committed by neil
Browse files

bug fix to respect the --accountkeylength flag (#219)

Thanks.
parent 13d7cae9
...@@ -2633,11 +2633,13 @@ _process() { ...@@ -2633,11 +2633,13 @@ _process() {
--keylength|-k) --keylength|-k)
_keylength="$2" _keylength="$2"
accountkeylength="$2" if [ "$_accountkeylength" = "no" ] ; then
_accountkeylength="$2"
fi
shift shift
;; ;;
--accountkeylength|-ak) --accountkeylength|-ak)
accountkeylength="$2" _accountkeylength="$2"
shift shift
;; ;;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment