gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnunet] branch master updated: fix mktemp call


From: gnunet
Subject: [GNUnet-SVN] [gnunet] branch master updated: fix mktemp call
Date: Wed, 03 Apr 2019 11:10:06 +0200

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new db442be60 fix mktemp call
db442be60 is described below

commit db442be605237a26dc3e7d66bb21ae7a44da44e0
Author: Christian Grothoff <address@hidden>
AuthorDate: Wed Apr 3 11:10:03 2019 +0200

    fix mktemp call
---
 src/gns/gnunet-gns-proxy-setup-ca.in | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/gns/gnunet-gns-proxy-setup-ca.in 
b/src/gns/gnunet-gns-proxy-setup-ca.in
index e9ee5e395..aa06907e3 100644
--- a/src/gns/gnunet-gns-proxy-setup-ca.in
+++ b/src/gns/gnunet-gns-proxy-setup-ca.in
@@ -235,9 +235,9 @@ generate_ca()
     infomsg "Generating CA"
     TMPDIR=${TMPDIR:-/tmp}
     if [ -e "$TMPDIR" ]; then
-        GNSCERT=`mktemp -t ${00##*/}.pem` || exit 1
-        GNSCAKY=`mktemp -t ${00##*/}.pem` || exit 1
-        GNSCANO=`mktemp -t ${00##*/}.pem` || exit 1
+        GNSCERT=`mktemp -t certXXXXXXXX.pem` || exit 1
+        GNSCAKY=`mktemp -t cakyXXXXXXXX.pem` || exit 1
+        GNSCANO=`mktemp -t canoXXXXXXXX.pem` || exit 1
     else
         # This warning is mostly pointless.
         warning "You need to export the TMPDIR variable"

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]