diff options
-rwxr-xr-x | source3/script/tests/test_net_registry_roundtrip.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/script/tests/test_net_registry_roundtrip.sh b/source3/script/tests/test_net_registry_roundtrip.sh index 050311a814..f2158879e3 100755 --- a/source3/script/tests/test_net_registry_roundtrip.sh +++ b/source3/script/tests/test_net_registry_roundtrip.sh @@ -66,9 +66,9 @@ conf_roundtrip_step() { LOGDIR_PREFIX="conf_roundtrip" conf_roundtrip() -{ - local DIR=$(mktemp -d ${PREFIX}/${LOGDIR_PREFIX}_XXXXXX) - local LOG=$DIR/log +( + DIR=$(mktemp -d ${PREFIX}/${LOGDIR_PREFIX}_XXXXXX) + LOG=$DIR/log echo conf_roundtrip $1 > $LOG @@ -144,7 +144,7 @@ conf_roundtrip() return 1 fi rm -r $DIR -} +) CONF_FILES=$SERVERCONFFILE |