From 4b643270db559df6dba421a9e4371e19c8413b32 Mon Sep 17 00:00:00 2001 From: giraffedata Date: Wed, 11 Jul 2007 15:46:06 +0000 Subject: use mkdir -m instead of umask git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@358 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- editor/pnmmargin | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'editor/pnmmargin') diff --git a/editor/pnmmargin b/editor/pnmmargin index 9950bdcb..f7c30b25 100755 --- a/editor/pnmmargin +++ b/editor/pnmmargin @@ -11,11 +11,9 @@ # documentation. This software is provided "as is" without express or # implied warranty. -oldumask=$(umask) -umask 0077 tempdir="${TMPDIR-/tmp}/pnmmargin.$$" -mkdir $tempdir || { echo "Could not create temporary file. Exiting."; exit 1;} -umask $oldumask +mkdir -m 0700 $tempdir || \ + { echo "Could not create temporary file. Exiting."; exit 1;} trap 'rm -rf $tempdir' 0 1 3 15 tmp1=$tempdir/pnmm1 -- cgit 1.4.1