From aa2dd250abd392b9ce77d35af7d3f4827326559b Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Fri, 24 Jun 2011 16:37:20 +0200 Subject: [PATCH] s3:test: fix the net registry roundtrip test on older systems mktemp requires exactly Xs at the end of the template name on SLES8 --- source3/script/tests/test_net_registry_roundtrip.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/script/tests/test_net_registry_roundtrip.sh b/source3/script/tests/test_net_registry_roundtrip.sh index 5431098da07..f3c43af081a 100755 --- a/source3/script/tests/test_net_registry_roundtrip.sh +++ b/source3/script/tests/test_net_registry_roundtrip.sh @@ -67,7 +67,7 @@ LOGDIR_PREFIX="conf_roundtrip" conf_roundtrip() { - local DIR=$(mktemp -d ${PREFIX}/${LOGDIR_PREFIX}_XXXX) + local DIR=$(mktemp -d ${PREFIX}/${LOGDIR_PREFIX}_XXXXXX) local LOG=$DIR/log echo conf_roundtrip $1 > $LOG -- 2.11.4.GIT