diff options
author | jsing <> | 2014-07-11 08:00:25 +0000 |
---|---|---|
committer | jsing <> | 2014-07-11 08:00:25 +0000 |
commit | 22d34c2d8bc5e1aef79a43753b71073bff378ce9 (patch) | |
tree | 32ecb7043d482462f1a51c7345f29f0a5bd89f86 | |
parent | b3aef8f1594a3fa2decce201c254bc714ada3c2b (diff) | |
download | openbsd-22d34c2d8bc5e1aef79a43753b71073bff378ce9.tar.gz openbsd-22d34c2d8bc5e1aef79a43753b71073bff378ce9.tar.bz2 openbsd-22d34c2d8bc5e1aef79a43753b71073bff378ce9.zip |
Remove JPAKE remnants - there is no jpake.h, so if OPENSSL_NO_JPAKE was
removed from opensslconf.h, this would no longer compile.
-rw-r--r-- | src/lib/libcrypto/err/err_all.c | 8 | ||||
-rw-r--r-- | src/lib/libcrypto/err/openssl.ec | 1 | ||||
-rw-r--r-- | src/lib/libssl/src/crypto/err/err_all.c | 8 | ||||
-rw-r--r-- | src/lib/libssl/src/crypto/err/openssl.ec | 1 |
4 files changed, 2 insertions, 16 deletions
diff --git a/src/lib/libcrypto/err/err_all.c b/src/lib/libcrypto/err/err_all.c index d950aad3b4..64598d6cf4 100644 --- a/src/lib/libcrypto/err/err_all.c +++ b/src/lib/libcrypto/err/err_all.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: err_all.c,v 1.16 2014/07/10 22:45:57 jsing Exp $ */ | 1 | /* $OpenBSD: err_all.c,v 1.17 2014/07/11 08:00:25 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -104,9 +104,6 @@ | |||
104 | #ifndef OPENSSL_NO_CMS | 104 | #ifndef OPENSSL_NO_CMS |
105 | #include <openssl/cms.h> | 105 | #include <openssl/cms.h> |
106 | #endif | 106 | #endif |
107 | #ifndef OPENSSL_NO_JPAKE | ||
108 | #include <openssl/jpake.h> | ||
109 | #endif | ||
110 | 107 | ||
111 | void | 108 | void |
112 | ERR_load_crypto_strings(void) | 109 | ERR_load_crypto_strings(void) |
@@ -159,8 +156,5 @@ ERR_load_crypto_strings(void) | |||
159 | #ifndef OPENSSL_NO_CMS | 156 | #ifndef OPENSSL_NO_CMS |
160 | ERR_load_CMS_strings(); | 157 | ERR_load_CMS_strings(); |
161 | #endif | 158 | #endif |
162 | #ifndef OPENSSL_NO_JPAKE | ||
163 | ERR_load_JPAKE_strings(); | ||
164 | #endif | ||
165 | #endif | 159 | #endif |
166 | } | 160 | } |
diff --git a/src/lib/libcrypto/err/openssl.ec b/src/lib/libcrypto/err/openssl.ec index e0554b4342..c513734e94 100644 --- a/src/lib/libcrypto/err/openssl.ec +++ b/src/lib/libcrypto/err/openssl.ec | |||
@@ -34,7 +34,6 @@ L STORE crypto/store/store.h crypto/store/str_err.c | |||
34 | L TS crypto/ts/ts.h crypto/ts/ts_err.c | 34 | L TS crypto/ts/ts.h crypto/ts/ts_err.c |
35 | L HMAC crypto/hmac/hmac.h crypto/hmac/hmac_err.c | 35 | L HMAC crypto/hmac/hmac.h crypto/hmac/hmac_err.c |
36 | L CMS crypto/cms/cms.h crypto/cms/cms_err.c | 36 | L CMS crypto/cms/cms.h crypto/cms/cms_err.c |
37 | L JPAKE crypto/jpake/jpake.h crypto/jpake/jpake_err.c | ||
38 | 37 | ||
39 | # additional header files to be scanned for function names | 38 | # additional header files to be scanned for function names |
40 | L NONE crypto/x509/x509_vfy.h NONE | 39 | L NONE crypto/x509/x509_vfy.h NONE |
diff --git a/src/lib/libssl/src/crypto/err/err_all.c b/src/lib/libssl/src/crypto/err/err_all.c index d950aad3b4..64598d6cf4 100644 --- a/src/lib/libssl/src/crypto/err/err_all.c +++ b/src/lib/libssl/src/crypto/err/err_all.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: err_all.c,v 1.16 2014/07/10 22:45:57 jsing Exp $ */ | 1 | /* $OpenBSD: err_all.c,v 1.17 2014/07/11 08:00:25 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -104,9 +104,6 @@ | |||
104 | #ifndef OPENSSL_NO_CMS | 104 | #ifndef OPENSSL_NO_CMS |
105 | #include <openssl/cms.h> | 105 | #include <openssl/cms.h> |
106 | #endif | 106 | #endif |
107 | #ifndef OPENSSL_NO_JPAKE | ||
108 | #include <openssl/jpake.h> | ||
109 | #endif | ||
110 | 107 | ||
111 | void | 108 | void |
112 | ERR_load_crypto_strings(void) | 109 | ERR_load_crypto_strings(void) |
@@ -159,8 +156,5 @@ ERR_load_crypto_strings(void) | |||
159 | #ifndef OPENSSL_NO_CMS | 156 | #ifndef OPENSSL_NO_CMS |
160 | ERR_load_CMS_strings(); | 157 | ERR_load_CMS_strings(); |
161 | #endif | 158 | #endif |
162 | #ifndef OPENSSL_NO_JPAKE | ||
163 | ERR_load_JPAKE_strings(); | ||
164 | #endif | ||
165 | #endif | 159 | #endif |
166 | } | 160 | } |
diff --git a/src/lib/libssl/src/crypto/err/openssl.ec b/src/lib/libssl/src/crypto/err/openssl.ec index e0554b4342..c513734e94 100644 --- a/src/lib/libssl/src/crypto/err/openssl.ec +++ b/src/lib/libssl/src/crypto/err/openssl.ec | |||
@@ -34,7 +34,6 @@ L STORE crypto/store/store.h crypto/store/str_err.c | |||
34 | L TS crypto/ts/ts.h crypto/ts/ts_err.c | 34 | L TS crypto/ts/ts.h crypto/ts/ts_err.c |
35 | L HMAC crypto/hmac/hmac.h crypto/hmac/hmac_err.c | 35 | L HMAC crypto/hmac/hmac.h crypto/hmac/hmac_err.c |
36 | L CMS crypto/cms/cms.h crypto/cms/cms_err.c | 36 | L CMS crypto/cms/cms.h crypto/cms/cms_err.c |
37 | L JPAKE crypto/jpake/jpake.h crypto/jpake/jpake_err.c | ||
38 | 37 | ||
39 | # additional header files to be scanned for function names | 38 | # additional header files to be scanned for function names |
40 | L NONE crypto/x509/x509_vfy.h NONE | 39 | L NONE crypto/x509/x509_vfy.h NONE |