Index: crypto/bn/bn_prime.pl --- crypto/bn/bn_prime.pl.orig 2000-02-16 14:24:06.000000000 +0100 +++ crypto/bn/bn_prime.pl 2003-10-01 22:06:50.000000000 +0200 @@ -11,7 +11,7 @@ $p+=2; $s=int(sqrt($p)); - for ($i=0; $primes[$i]<=$s; $i++) + for ($i=0; defined($primes[$i]) && $primes[$i]<=$s; $i++) { next loop if (($p%$primes[$i]) == 0); } Index: doc/crypto/des_modes.pod --- doc/crypto/des_modes.pod.orig 2002-03-05 16:30:13.000000000 +0100 +++ doc/crypto/des_modes.pod 2003-10-01 22:06:50.000000000 +0200 @@ -2,7 +2,7 @@ =head1 NAME -Modes of DES - the variants of DES and other crypto algorithms of OpenSSL +des_modes - the variants of DES and other crypto algorithms of OpenSSL =head1 DESCRIPTION Index: doc/crypto/ui.pod --- doc/crypto/ui.pod.orig 2001-10-25 18:55:17.000000000 +0200 +++ doc/crypto/ui.pod 2003-10-01 22:07:42.000000000 +0200 @@ -5,7 +5,7 @@ UI_new, UI_new_method, UI_free, UI_add_input_string, UI_dup_input_string, UI_add_verify_string, UI_dup_verify_string, UI_add_input_boolean, UI_dup_input_boolean, UI_add_info_string, UI_dup_info_string, -UI_add_error_string, UI_dup_error_string, UI_construct_prompt +UI_add_error_string, UI_dup_error_string, UI_construct_prompt, UI_add_user_data, UI_get0_user_data, UI_get0_result, UI_process, UI_ctrl, UI_set_default_method, UI_get_default_method, UI_get_method, UI_set_method, UI_OpenSSL, ERR_load_UI_strings - New User Interface Index: doc/crypto/EVP_DigestInit.pod --- doc/crypto/EVP_DigestInit.pod.orig 2002-07-18 20:55:04.000000000 +0200 +++ doc/crypto/EVP_DigestInit.pod 2003-10-01 22:08:09.000000000 +0200 @@ -4,7 +4,7 @@ EVP_MD_CTX_init, EVP_MD_CTX_create, EVP_DigestInit_ex, EVP_DigestUpdate, EVP_DigestFinal_ex, EVP_MD_CTX_cleanup, EVP_MD_CTX_destroy, EVP_MAX_MD_SIZE, -EVP_MD_CTX_copy_ex EVP_MD_CTX_copy, EVP_MD_type, EVP_MD_pkey_type, EVP_MD_size, +EVP_MD_CTX_copy_ex, EVP_MD_CTX_copy, EVP_MD_type, EVP_MD_pkey_type, EVP_MD_size, EVP_MD_block_size, EVP_MD_CTX_md, EVP_MD_CTX_size, EVP_MD_CTX_block_size, EVP_MD_CTX_type, EVP_md_null, EVP_md2, EVP_md5, EVP_sha, EVP_sha1, EVP_dss, EVP_dss1, EVP_mdc2, EVP_ripemd160, EVP_get_digestbyname, EVP_get_digestbynid, EVP_get_digestbyobj - Index: Makefile.ssl --- Makefile.ssl.orig 2003-09-30 14:38:13.000000000 +0200 +++ Makefile.ssl 2003-10-01 22:06:50.000000000 +0200 @@ -834,7 +834,7 @@ fi; \ fi cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig - chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig + chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig/openssl.pc install_docs: @$(PERL) $(TOP)/util/mkdir-p.pl \ Index: Makefile.org --- Makefile.org.orig 2003-08-11 11:37:17.000000000 +0200 +++ Makefile.org 2003-10-01 22:06:50.000000000 +0200 @@ -832,7 +832,7 @@ fi; \ fi cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig - chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig + chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig/openssl.pc install_docs: @$(PERL) $(TOP)/util/mkdir-p.pl \