diff options
author | 2000-09-05 08:18:21 +0000 | |
---|---|---|
committer | 2000-09-05 08:18:21 +0000 | |
commit | 7fa9560b7deb509a8975cff8df24bb5aaaaedae8 (patch) | |
tree | 37ceb970c93e2393320d88a4959489a778832ce9 | |
parent | Remove quotes from arguement lists to for loops. (diff) | |
download | wireguard-openbsd-7fa9560b7deb509a8975cff8df24bb5aaaaedae8.tar.xz wireguard-openbsd-7fa9560b7deb509a8975cff8df24bb5aaaaedae8.zip |
des_modes(7) not des_modes(7); jmd@turbogeek.org
-rw-r--r-- | lib/libssl/Makefile.bsd-wrapper | 9 | ||||
-rw-r--r-- | lib/libssl/src/doc/crypto/des.pod | 2 |
2 files changed, 7 insertions, 4 deletions
diff --git a/lib/libssl/Makefile.bsd-wrapper b/lib/libssl/Makefile.bsd-wrapper index de292e36255..f59a2ea5516 100644 --- a/lib/libssl/Makefile.bsd-wrapper +++ b/lib/libssl/Makefile.bsd-wrapper @@ -1,5 +1,5 @@ # Build wrapper for OpenSSL -# $OpenBSD: Makefile.bsd-wrapper,v 1.22 2000/04/16 05:00:06 deraadt Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.23 2000/09/05 08:18:21 deraadt Exp $ # Our lndir is hacked; specify a full path to avoid potential conflicts # with the one installed with X11. @@ -51,7 +51,7 @@ MANALL= ssl.cat3 SSL_get_error.cat3 \ blowfish.cat3 DH_size.cat3 bn.cat3 DSA_SIG_new.cat3 bn_internal.cat3 \ DSA_do_sign.cat3 DSA_dup_DH.cat3 crypto.cat3 DSA_generate_key.cat3 \ DSA_generate_parameters.cat3 d2i_DHparams.cat3 d2i_RSAPublicKey.cat3 \ - DSA_get_ex_new_index.cat3 des_modes.cat3 DSA_new.cat3 dh.cat3 \ + DSA_get_ex_new_index.cat3 des_modes.cat7 DSA_new.cat3 dh.cat3 \ DSA_set_method.cat3 dsa.cat3 DSA_sign.cat3 DSA_size.cat3 HMAC.cat3 \ ERR_GET_LIB.cat3 lh_stats.cat3 ERR_clear_error.cat3 lhash.cat3 \ ERR_error_string.cat3 MD5.cat3 ERR_get_error.cat3 MDC2.cat3 \ @@ -423,7 +423,10 @@ MANALL= ( cd `dirname ${.ALLSRC}` && pod2man --section=3 --official \ --center='OpenSSL' --release="OpenBSD `uname -r`" \ `basename ${.ALLSRC}` ) | nroff -Tascii -man > ${.TARGET} - +.pod.cat7: + ( cd `dirname ${.ALLSRC}` && pod2man --section=7 --official \ + --center='OpenSSL' --release="OpenBSD `uname -r`" \ + `basename ${.ALLSRC}` ) | nroff -Tascii -man > ${.TARGET} .pod.cat1: ( cd `dirname ${.ALLSRC}` && pod2man --section=1 --official \ --center='OpenSSL' --release="OpenBSD `uname -r`" \ diff --git a/lib/libssl/src/doc/crypto/des.pod b/lib/libssl/src/doc/crypto/des.pod index c553210ef28..1ca6bfb78fd 100644 --- a/lib/libssl/src/doc/crypto/des.pod +++ b/lib/libssl/src/doc/crypto/des.pod @@ -345,7 +345,7 @@ the MIT Kerberos library. =head1 SEE ALSO -crypt(3), L<des_modes(3)|des_modes(3)>, L<evp(3)|evp(3)>, L<rand(3)|rand(3)> +crypt(3), L<des_modes(7)|des_modes(7)>, L<evp(3)|evp(3)>, L<rand(3)|rand(3)> =head1 HISTORY |