diff options
| author | Kris Kennaway <kris@FreeBSD.org> | 2000-03-02 06:21:02 +0000 |
|---|---|---|
| committer | Kris Kennaway <kris@FreeBSD.org> | 2000-03-02 06:21:02 +0000 |
| commit | 1d324174685638e34f8a66c8f78435962b1c0d36 (patch) | |
| tree | 76daece44e1387641c16ea98591960cb52b5f86a /crypto/openssl | |
| parent | a5ee11a77abbe0c36c2c36fe4f87fe086185e4de (diff) | |
Notes
Diffstat (limited to 'crypto/openssl')
| -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 5a3403071e7c..2da9e4268360 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 d763dbddc07c..6296ebb93ec9 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 |
