From 81a6e16539e5e4a27c55194ae095cc4a75d08ade Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Wed, 17 Jul 2013 09:51:32 +0200 Subject: tools: Use $TMPDIR instead of $TEMP TMPDIR is a more standard environment variable for locating the temp directory on Unix. In addition since this is only used in tests, remove the code from the generic p11_path_expand() func. In general remove the possibility for forks to put $HOME or $TEMP environment variables in configured paths. This was possible due to code in p11_path_expand() but not something we supported. https://bugzilla.redhat.com/show_bug.cgi?id=985017 --- trust/tests/test-save.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'trust/tests/test-save.c') diff --git a/trust/tests/test-save.c b/trust/tests/test-save.c index eba5632..be16141 100644 --- a/trust/tests/test-save.c +++ b/trust/tests/test-save.c @@ -63,9 +63,7 @@ struct { static void setup (void *unused) { - test.directory = p11_path_expand ("$TEMP/test-extract.XXXXXX"); - if (!mkdtemp (test.directory)) - assert_fail ("mkdtemp() failed", strerror (errno)); + test.directory = p11_test_directory ("test-extract"); } static void -- cgit v1.1