[tor/master] Use mktemp to fix SC2186; also, fix SC2006.

commit 2649239c620b57cc11c2499ed35fa571af996d18 Author: rl1987 <rl1987@sdf.lonestar.org> Date: Wed Feb 6 10:27:16 2019 +0200 Use mktemp to fix SC2186; also, fix SC2006. --- contrib/dirauth-tools/nagios-check-tor-authority-cert | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/dirauth-tools/nagios-check-tor-authority-cert b/contrib/dirauth-tools/nagios-check-tor-authority-cert index 7a60da16f..932a78061 100755 --- a/contrib/dirauth-tools/nagios-check-tor-authority-cert +++ b/contrib/dirauth-tools/nagios-check-tor-authority-cert @@ -49,7 +49,7 @@ DIRSERVERS="$DIRSERVERS 80.190.246.100:80" # gabelmoo DIRSERVERS="$DIRSERVERS 194.109.206.212:80" # dizum DIRSERVERS="$DIRSERVERS 213.73.91.31:80" # dannenberg -TMPFILE="`tempfile`" +TMPFILE=$(mktemp) trap 'rm -f "$TMPFILE"' 0 for dirserver in $DIRSERVERS; do
participants (1)
-
nickm@torproject.org