Commit 724e095e authored by Paul C. Sutton's avatar Paul C. Sutton
Browse files

Various ssleay to openssl fixups

parent 794b9c8f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -237,7 +237,7 @@ links:
	(cd $$i && echo "making links in $$i..." && \
	$(MAKE) SDIRS='${SDIRS}' links ) || exit 1; \
	done;
	@(SSLEAY="`pwd`/apps/openssl"; export SSLEAY; sh tools/c_rehash certs)
	@(OPENSSL="`pwd`/apps/openssl"; export OPENSSL; sh tools/c_rehash certs)

dclean:
	/bin/rm -f *.bak
+1 −1
Original line number Diff line number Diff line
@@ -4,6 +4,6 @@

for i in $*
do
	h=`ssleay x509 -hash -noout -in $i`
	h=`openssl x509 -hash -noout -in $i`
	echo "$h.0 => $i"
done
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@

for i in $*
do
	n=`ssleay x509 -subject -issuer -enddate -noout -in $i`
	n=`openssl x509 -subject -issuer -enddate -noout -in $i`
	echo "$i"
	echo "$n"
	echo "--------"
+1 −1
Original line number Diff line number Diff line
@@ -5,6 +5,6 @@

for i in $*
do
	n=`ssleay x509 -issuer -noout -in $i`
	n=`openssl x509 -issuer -noout -in $i`
	echo "$i\t$n"
done
+1 −1
Original line number Diff line number Diff line
@@ -5,6 +5,6 @@

for i in $*
do
	n=`ssleay x509 -subject -noout -in $i`
	n=`openssl x509 -subject -noout -in $i`
	echo "$i	$n"
done
Loading