The read value is useless, so use throwaway variable name

This commit is contained in:
Badlop 2021-12-22 13:52:13 +01:00
parent 4deff0513c
commit fdc664a318
1 changed files with 2 additions and 2 deletions

View File

@ -146,7 +146,7 @@ debugwarning()
echo "To bypass permanently this warning, add to ejabberdctl.cfg the line:"
echo " EJABBERD_BYPASS_WARNINGS=true"
echo "Press return to continue"
read -r input
read -r _
echo ""
fi
}
@ -169,7 +169,7 @@ livewarning()
echo "To bypass permanently this warning, add to ejabberdctl.cfg the line:"
echo " EJABBERD_BYPASS_WARNINGS=true"
echo "Press return to continue"
read -r input
read -r _
echo ""
fi
}