K 10 svn:author V 8 cperciva K 8 svn:date V 27 2013-11-04T03:00:44.723946Z K 7 svn:log V 196 Change local tmpfile=`mktemp` || exit 1 into local tmpfile tmpfile=`mktemp` || exit 1 since the former is parsed as "local || exit 1" and loses the exit code from mktemp. Submitted by: jilles END