Fix '-?'-caused pattern match.

This commit is contained in:
Michał Górny 2010-07-12 11:15:51 +02:00
parent b7d084e3ff
commit cdc95c4595

View File

@ -123,7 +123,7 @@ main() {
while [ ${#} -gt 0 ]; do
case "${1}" in
--help|-?|-h)
--help|-\?|-h)
print_help
exit 0
;;