Commit 31a5487c authored by neil's avatar neil
Browse files

fix dual certs

parent 43822d37
...@@ -84,14 +84,14 @@ _err_e() { ...@@ -84,14 +84,14 @@ _err_e() {
_err() { _err() {
printf -- "[$(date)] " >&2 printf -- "[$(date)] " >&2
_err_e "$@" _err_e "$@"
printf "\n" printf "\n" >&2
return 1 return 1
} }
_usage() { _usage() {
version version
_err_e "$@" _err_e "$@"
printf "\n" printf "\n" >&2
} }
_debug() { _debug() {
...@@ -105,7 +105,7 @@ _debug() { ...@@ -105,7 +105,7 @@ _debug() {
printf -- "[$(date)] $1='$2'" >&2 printf -- "[$(date)] $1='$2'" >&2
fi fi
printf "\n" printf "\n" >&2
return 0 return 0
} }
...@@ -546,7 +546,7 @@ createAccountKey() { ...@@ -546,7 +546,7 @@ createAccountKey() {
return return
else else
#generate account key #generate account key
_createkey $length "$ACCOUNT_KEY_PATH" _createkey "$length" "$ACCOUNT_KEY_PATH"
fi fi
} }
......
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