]> gitweb.fluxo.info Git - ssl-wrapper.git/commitdiff
Fix: coding style master
authorSilvio Rhatto <rhatto@riseup.net>
Sat, 4 Mar 2023 17:07:49 +0000 (14:07 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Sat, 4 Mar 2023 17:07:49 +0000 (14:07 -0300)
ssl

diff --git a/ssl b/ssl
index aa93c70591113236a314b0db746caf4860b86550..f043fb16e8a29537ee83ee529a8db7b12384481d 100755 (executable)
--- a/ssl
+++ b/ssl
@@ -21,12 +21,12 @@ function usage {
 function retrieve {
   REMHOST=$1
   REMPORT=${2:-443}
-  
+
   shift 2
   OPTS="$*"
 
-  echo |\
-  openssl s_client -connect ${REMHOST}:${REMPORT} $OPTS 2>&1 |\
+  echo | \
+  openssl s_client -connect ${REMHOST}:${REMPORT} $OPTS 2>&1 | \
   sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p'
 }