svn commit: r257602 - user/cperciva/panicmail

Jeremie Le Hen jlh at FreeBSD.org
Thu Nov 7 22:34:23 UTC 2013


On Mon, Nov 04, 2013 at 03:00:45AM +0000, Colin Percival wrote:
> Author: cperciva
> Date: Mon Nov  4 03:00:44 2013
> New Revision: 257602
> URL: http://svnweb.freebsd.org/changeset/base/257602
> 
> Log:
>   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

Out of curiosity, is this brokenness of local mandated by the standard?

-- 
Jeremie Le Hen

Scientists say the world is made up of Protons, Neutrons and Electrons.
They forgot to mention Morons.


More information about the svn-src-user mailing list