Browse Source

Remove useless export in zero length key test

Fixes part of bug #14478, patch idea suggested by an anonymous
contributor. Thanks!
Sebastian Hahn 9 years ago
parent
commit
136b1d8ed0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/test/zero_length_keys.sh

+ 1 - 1
src/test/zero_length_keys.sh

@@ -25,7 +25,7 @@ if [ $# -lt 1 ]; then
   exit $?
 fi
 
-export DATA_DIR=`mktemp -d -t tor_zero_length_keys.XXXXXX`
+DATA_DIR=`mktemp -d -t tor_zero_length_keys.XXXXXX`
 # DisableNetwork means that the ORPort won't actually be opened.
 # 'ExitRelay 0' suppresses a warning.
 TOR="./src/or/tor --hush --DisableNetwork 1 --ShutdownWaitLength 0 --ORPort 12345 --ExitRelay 0"