From: millert Date: Sat, 4 Jan 1997 01:08:04 +0000 (+0000) Subject: Fix typo, too much perl on the brain. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=548908afa82d67b20d30799a9d19eb2392be0622;p=openbsd Fix typo, too much perl on the brain. --- diff --git a/usr.bin/mktemp/mktemp.1 b/usr.bin/mktemp/mktemp.1 index 4f6ff85d8c1..b313a19808e 100644 --- a/usr.bin/mktemp/mktemp.1 +++ b/usr.bin/mktemp/mktemp.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mktemp.1,v 1.1 1996/11/21 07:59:32 millert Exp $ +.\" $OpenBSD: mktemp.1,v 1.2 1997/01/04 01:08:04 millert Exp $ .\" .\" Copyright (c) 1989, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -110,7 +110,7 @@ echo "program output" >> $TMPFILE In this case, we want the script to catch the error itself. .Bd -literal -offset indent TMPFILE=`mktemp -s /tmp/$0.XXXXXX` -if [ $? ne 0 ]; then +if [ $? -ne 0 ]; then echo "$0: Can't create temp file, exiting..." exit 1 fi