Phil Sutter <phil@xxxxxx> wrote: > > utimeout=$((RANDOM%5)) > > - utimeout=$((timeout+1)) > > + utimeout=$((utimeout+1)) > > How about merging the statements? > > | utimeout=$((RANDOM % 5 + 1)) Sure, that works too. I applied the patch as-is, you can munge this as a followup if you like.