From 0a5471dfd507bc446420716ad8287b59700bcb6c Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 26 Oct 2017 09:22:58 +1300 Subject: Correct misnamed variable --- bin/mktd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/mktd.sh b/bin/mktd.sh index 61c1b5ab..72375873 100644 --- a/bin/mktd.sh +++ b/bin/mktd.sh @@ -3,7 +3,7 @@ # Build the intended directory name, with the last element a random integer # from 1..2^31 lim=$((2 << 31)) -dn=${TMPDIR:-/tmp}/${1:-mktd}.$$.$(rndi 1 "$e") +dn=${TMPDIR:-/tmp}/${1:-mktd}.$$.$(rndi 1 "$lim") # Create the directory and print its name if successful mkdir -m 700 -- "$dn" && printf '%s\n' "$dn" -- cgit v1.2.3