From bd529ddeeb6ac21801195cb91671f30122eba9da Mon Sep 17 00:00:00 2001 From: millert Date: Mon, 27 Jan 1997 03:40:58 +0000 Subject: [PATCH] fix typo --- usr.bin/mktemp/mktemp.1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/mktemp/mktemp.1 b/usr.bin/mktemp/mktemp.1 index b313a19808e..71d77a334ef 100644 --- a/usr.bin/mktemp/mktemp.1 +++ b/usr.bin/mktemp/mktemp.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mktemp.1,v 1.2 1997/01/04 01:08:04 millert Exp $ +.\" $OpenBSD: mktemp.1,v 1.3 1997/01/27 03:40:58 millert Exp $ .\" .\" Copyright (c) 1989, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -109,7 +109,7 @@ echo "program output" >> $TMPFILE .Pp In this case, we want the script to catch the error itself. .Bd -literal -offset indent -TMPFILE=`mktemp -s /tmp/$0.XXXXXX` +TMPFILE=`mktemp -q /tmp/$0.XXXXXX` if [ $? -ne 0 ]; then echo "$0: Can't create temp file, exiting..." exit 1 -- 2.20.1