Fix literal "choice" being passed to appendToListsFile()

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER 2018-11-08 19:43:35 +01:00
parent bbb759c684
commit 33156071cd
No known key found for this signature in database
GPG key ID: FB60471F0575164A

View file

@ -1132,7 +1132,7 @@ chooseBlocklists() {
# For each choice available, # For each choice available,
for choice in ${choices} for choice in ${choices}
do do
appendToListsFile choice appendToListsFile "${choice}"
done done
} }