aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rcynic/make-tal.sh (renamed from rcynic/make-ita.sh)4
1 files changed, 2 insertions, 2 deletions
diff --git a/rcynic/make-ita.sh b/rcynic/make-tal.sh
index 2ea89b06..59d00832 100644
--- a/rcynic/make-ita.sh
+++ b/rcynic/make-tal.sh
@@ -18,7 +18,7 @@
# Generate an indirect trust anchor given the rsync URI for a
# self-signed RFC 3779 certificate.
#
-# Usage: make-ita.sh uri [local_copy_of_certificate]
+# Usage: make-tal.sh uri [local_copy_of_certificate]
#
# The optional second parameter is the name of a local copy of the
# certificate to be checked against the copy retrieved from the URI;
@@ -26,7 +26,7 @@
case "$1" in rsync://*) :;; *) echo 1>&2 "\"$1\" is not a rsync URI"; exit 1;; esac
-tmpfile="make-ita.tmp.$$"
+tmpfile="make-tal.tmp.$$"
trap "rm -f $tmpfile" 0 1 2 15
rsync "$1" "$tmpfile" || exit