You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

whichopensslcnf 190B

12345678910111213
  1. #!/bin/sh
  2. if [ "$OPENSSL" ]; then
  3. if $OPENSSL version | grep 0.9.6 > /dev/null; then
  4. echo "$1/openssl-0.9.6.cnf"
  5. else
  6. echo "$1/openssl.cnf"
  7. fi
  8. else
  9. echo "$1/openssl.cnf"
  10. fi
  11. exit 0