diff options
author | kris <kris@FreeBSD.org> | 2000-03-02 06:21:02 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2000-03-02 06:21:02 +0000 |
commit | b3d817cd5704469b459b8ac9642433c79251ccd6 (patch) | |
tree | f3ce398c60c875e72c04243f10c9579e9c445711 /crypto | |
parent | 1064439c5059fc7130eecb8c6671c3847be331aa (diff) | |
download | FreeBSD-src-b3d817cd5704469b459b8ac9642433c79251ccd6.zip FreeBSD-src-b3d817cd5704469b459b8ac9642433c79251ccd6.tar.gz |
Update the wording on the error message when libcrypto.so can't find an
RSA library.
Reviewed by: peter, jkh
Diffstat (limited to 'crypto')
-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 |