Package: monkeysphere Version: 0.33-1 /usr/bin/monkeysphere conains a "set -e" invocation rather than relying on proper error checking.
This means that arithmatic expressions which return 0 will be treated as failures. In order to work around this problem, you can replace things like (( nline=0 )) with (( nline=0,1 )) or (( nline=0 )) || true and things like (( nline++ )) with (( ++nline )) Personally, though, I would get rid of "set -e" since it is a blight on humanity. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org