$NetBSD: patch-aj,v 1.5 2005/03/31 14:41:48 salo Exp $

--- src/mailshar.in.orig	1995-11-26 00:42:47.000000000 +0100
+++ src/mailshar.in	2005-03-31 15:51:27.000000000 +0200
@@ -33,7 +33,11 @@
 If none of -MTBzZ are given, -z is automatically selected if *none*
 of the FILEs have an .arc, .exz, .gif, .z, .gz, .Z, .zip or .zoo suffix."
 
-temp=/usr/tmp/$$.shar
+temp=`mktemp -q /tmp/${0##*/}.XXXXXX`
+if [ $? -ne 0 ]; then
+    echo "$0: Can't create temp file, exiting..."
+    exit 1
+fi
 
 ### Decode the options.
 
