aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bin/mktd.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/mktd.sh b/bin/mktd.sh
index 89cdc7c3..61c1b5ab 100644
--- a/bin/mktd.sh
+++ b/bin/mktd.sh
@@ -2,7 +2,8 @@
# Build the intended directory name, with the last element a random integer
# from 1..2^31
-dn=${TMPDIR:-/tmp}/${1:-mktd}.$$.$(rndi 1 2147483648)
+lim=$((2 << 31))
+dn=${TMPDIR:-/tmp}/${1:-mktd}.$$.$(rndi 1 "$e")
# Create the directory and print its name if successful
mkdir -m 700 -- "$dn" && printf '%s\n' "$dn"