diff options
-rw-r--r-- | crypto/openssl/crypto/rsa/rsa_stubs.c | 6 | ||||
-rw-r--r-- | crypto/openssl/rsaref/rsaref_stubs.c | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/crypto/openssl/crypto/rsa/rsa_stubs.c b/crypto/openssl/crypto/rsa/rsa_stubs.c index 5a34030..2da9e42 100644 --- a/crypto/openssl/crypto/rsa/rsa_stubs.c +++ b/crypto/openssl/crypto/rsa/rsa_stubs.c @@ -55,9 +55,11 @@ getsym(const char *sym) ret = dlsym(rsalib, sym); #ifdef VERBOSE_STUBS if (!ret && !whined) { - fprintf(stderr, "** %s: Unable to find an rsa implemenation shared library.\n", sym); + fprintf(stderr, "** %s: Unable to find an RSA implemenation shared library.\n", sym); fprintf(stderr, "** Install either the USA (%s) or International (%s)\n", RSAINTL_SHLIB, RSAUSA_SHLIB); - fprintf(stderr, "** RSA library on your system and run this program again\n"); + fprintf(stderr, "** RSA library on your system and run this program again.\n"); + fprintf(stderr, "** See Chapter 6.5 of the FreeBSD Handbook, located at\n"); + fprintf(stderr, "** http://www.freebsd.org/handbook/openssl.html, for more information.\n"); whined = 1; } #endif diff --git a/crypto/openssl/rsaref/rsaref_stubs.c b/crypto/openssl/rsaref/rsaref_stubs.c index d763dbd..6296ebb 100644 --- a/crypto/openssl/rsaref/rsaref_stubs.c +++ b/crypto/openssl/rsaref/rsaref_stubs.c @@ -61,8 +61,10 @@ getsym(const char *sym) ret = dlsym(rsalib, sym); #ifdef VERBOSE_STUBS if (!ret && !whined) { - fprintf(stderr, "** %s: Unable to find an rsaref shared library (%s).\n", sym, RSA_SHLIB); - fprintf(stderr, "** Install an RSA package on your system and run this program again\n"); + fprintf(stderr, "** %s: Unable to find an RSAREF shared library (%s).\n", sym, RSA_SHLIB); + fprintf(stderr, "** Install the /usr/ports/security/rsaref port or package and run this\n"); + fprintf(stderr, "** program again. See Chapter 6.5 in the FreeBSD Handbook, located at\n"); + fprintf(stderr, "** http://www.freebsd.org/handbook/openssl.html, for more information.\n"); whined = 1; } #endif |