Hi,

> -[ $# == 5 -o $# == 6 ] || {
> +if [ $# -ne 5 ] || [ $# -ne 6 ]; then

I think it should be

if [ $# -ne 5 ] && [ $# -ne 6 ]; then

If you resend, please make the commit title lower-case (thanks for already 
doing that for most of the other newer patches).

Best

Adrian 

Attachment: openpgp-digital-signature.asc
Description: PGP signature

_______________________________________________
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel

Reply via email to