]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
Corrected access of temp file. Reported by Thomas Witt.
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Sat, 24 Aug 2013 20:35:43 +0000 (23:35 +0300)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Sat, 24 Aug 2013 20:35:43 +0000 (23:35 +0300)
tests/cert-tests/pem-decoding

index 5414bf75bd9cbb68a22ce84491cb4eb29d609f7c..1459e39010e47c9fd28a759f00f2c3ea1b0d2fd4 100755 (executable)
@@ -62,7 +62,7 @@ if test "$rc" != "0"; then
 fi
 
 cat $srcdir/complex-cert.pem |grep -v "Not After:" >tmp1
-cat $srcdir/tmp-pem.pem |grep -v "Not After:" >tmp2
+cat tmp-pem.pem |grep -v "Not After:" >tmp2
 diff --strip-trailing-cr tmp1 tmp2
 rc=$?