From 6f071c25a343fbae7fb97b8e6c0c119f9677d762 Mon Sep 17 00:00:00 2001 From: Geoffrey Thomas Date: Sun, 29 Nov 2009 19:09:52 -0500 Subject: [PATCH] git-rcsimport: Fix a typo with the use of mktemp. Reported-by: Karl Ramm Signed-off-by: Geoffrey Thomas --- git-rcsimport | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-rcsimport b/git-rcsimport index b6f977e..4b06a00 100755 --- a/git-rcsimport +++ b/git-rcsimport @@ -12,7 +12,7 @@ if [ ! -d "$dir/RCS" ]; then exit 1 fi -tmpdir=`mktemp -d -t git-rcsimport` +tmpdir=`mktemp -d -t git-rcsimport-XXXXXXXXXX` mkdir "$tmpdir/CVSROOT" "$tmpdir/locks" "$tmpdir/rcs" echo "LockDir=$tmpdir/locks" > "$tmpdir/CVSROOT/config" absdir=`cd "$dir"; pwd` -- 2.44.0