Commit 9910ff5f authored by Armando Lüscher's avatar Armando Lüscher Committed by neil
Browse files

Allow saved password strings to have special characters. (#334)

parent 049be104
...@@ -1224,7 +1224,7 @@ _saveaccountconf() { ...@@ -1224,7 +1224,7 @@ _saveaccountconf() {
_sckey="$1" _sckey="$1"
_scvalue="$2" _scvalue="$2"
if [ "$ACCOUNT_CONF_PATH" ] ; then if [ "$ACCOUNT_CONF_PATH" ] ; then
_setopt "$ACCOUNT_CONF_PATH" "$_sckey" "=" "\"$_scvalue\"" _setopt "$ACCOUNT_CONF_PATH" "$_sckey" "=" "'$_scvalue'"
else else
_err "ACCOUNT_CONF_PATH is empty, can not save $_sckey=$_scvalue" _err "ACCOUNT_CONF_PATH is empty, can not save $_sckey=$_scvalue"
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