diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-05-26 20:15:30 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-05-26 20:15:30 +0000 |
commit | d7586905b9f211f0a1d6a36b00e365eaf9d9789d (patch) | |
tree | 1c4556ce5f83e37b64be05ee6a84e539cefebf62 /lib/libcrypto | |
parent | f48964184ddaf86fe54c4a0fefad69cac57c183f (diff) |
We don't really to keep history in constructs such as:
#if 1 /* new with openssl 0.9.4 */
current code;
#else
obsolete code;
#endif
Diffstat (limited to 'lib/libcrypto')
-rw-r--r-- | lib/libcrypto/pem/pem.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/libcrypto/pem/pem.h b/lib/libcrypto/pem/pem.h index 38469f02df3..6eae9345a1b 100644 --- a/lib/libcrypto/pem/pem.h +++ b/lib/libcrypto/pem/pem.h @@ -392,13 +392,7 @@ int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \ DECLARE_PEM_read(name, type) \ DECLARE_PEM_write_cb(name, type) -#if 1 -/* "userdata": new with OpenSSL 0.9.4 */ typedef int pem_password_cb(char *buf, int size, int rwflag, void *userdata); -#else -/* OpenSSL 0.9.3, 0.9.3a */ -typedef int pem_password_cb(char *buf, int size, int rwflag); -#endif int PEM_get_EVP_CIPHER_INFO(char *header, EVP_CIPHER_INFO *cipher); int PEM_do_header (EVP_CIPHER_INFO *cipher, unsigned char *data, long *len, |