From 3c9f02fc5fa7383d26162841eab530e012c14e8a Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Thu, 19 Aug 2010 15:08:54 +0000 Subject: [PATCH] quiet --- src/transport/gnunet-transport-certificate-creation | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/transport/gnunet-transport-certificate-creation b/src/transport/gnunet-transport-certificate-creation index 63557661c..539035ad5 100755 --- a/src/transport/gnunet-transport-certificate-creation +++ b/src/transport/gnunet-transport-certificate-creation @@ -10,13 +10,13 @@ fi rm -f $1 $2 # Create RSA Private Key -openssl genrsa -out $1 1024 > /dev/null +openssl genrsa -out $1 1024 2> /dev/null if [ $? -ne 0 ]; then rm -f $1 $2 exit 1 fi # Create a self-signed certificate in batch mode using rsa key - openssl req -batch -days 365 -out $2 -new -x509 -key $1 > /dev/null + openssl req -batch -days 365 -out $2 -new -x509 -key $1 2> /dev/null if [ $? -ne 0 ]; then rm -f $1 $2 exit 1 -- 2.25.1