summaryrefslogtreecommitdiffstats
path: root/lib/libssl/src
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2014-04-18 21:57:17 +0000
committertedu <tedu@openbsd.org>2014-04-18 21:57:17 +0000
commitcc5a1de9e82146557a9a443bd1c7143308ed5225 (patch)
treea561c3d0176fd017ae99c8916961c1fc82fa2ce2 /lib/libssl/src
parentrename wd33c93 to wd33c93ctrl (but keep the filenames as is) so we can (diff)
downloadwireguard-openbsd-cc5a1de9e82146557a9a443bd1c7143308ed5225.tar.xz
wireguard-openbsd-cc5a1de9e82146557a9a443bd1c7143308ed5225.zip
tone down some XXXXX to not appear in grep
Diffstat (limited to 'lib/libssl/src')
-rw-r--r--lib/libssl/src/crypto/asn1/asn1.h2
-rw-r--r--lib/libssl/src/crypto/des/fcrypt.c2
-rw-r--r--lib/libssl/src/doc/crypto/BIO_s_bio.pod2
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/libssl/src/crypto/asn1/asn1.h b/lib/libssl/src/crypto/asn1/asn1.h
index 3daebc078fc..e6c93deb2c8 100644
--- a/lib/libssl/src/crypto/asn1/asn1.h
+++ b/lib/libssl/src/crypto/asn1/asn1.h
@@ -494,7 +494,7 @@ typedef const ASN1_ITEM * ASN1_ITEM_EXP(void);
/* These determine what 'dumping' does, we can dump the
* content octets or the DER encoding: both use the
- * RFC2253 #XXXXX notation.
+ * RFC2253 #NNNNN notation.
*/
#define ASN1_STRFLGS_DUMP_DER 0x200
diff --git a/lib/libssl/src/crypto/des/fcrypt.c b/lib/libssl/src/crypto/des/fcrypt.c
index d02189b290e..08054a04c9d 100644
--- a/lib/libssl/src/crypto/des/fcrypt.c
+++ b/lib/libssl/src/crypto/des/fcrypt.c
@@ -72,7 +72,7 @@ char *DES_fcrypt(const char *buf, const char *salt, char *ret)
/* eay 25/08/92
* If you call crypt("pwd","*") as often happens when you
* have * as the pwd field in /etc/passwd, the function
- * returns *\0XXXXXXXXX
+ * returns *\0xxxxxxxxx
* The \0 makes the string look like * so the pwd "*" would
* crypt to "*". This was found when replacing the crypt in
* our shared libraries. People found that the disabled
diff --git a/lib/libssl/src/doc/crypto/BIO_s_bio.pod b/lib/libssl/src/doc/crypto/BIO_s_bio.pod
index 8d0a55a025c..38271f34486 100644
--- a/lib/libssl/src/doc/crypto/BIO_s_bio.pod
+++ b/lib/libssl/src/doc/crypto/BIO_s_bio.pod
@@ -126,7 +126,7 @@ BIO_new_bio_pair() returns 1 on success, with the new BIOs available in
B<bio1> and B<bio2>, or 0 on failure, with NULL pointers stored into the
locations for B<bio1> and B<bio2>. Check the error stack for more information.
-[XXXXX: More return values need to be added here]
+[TODO: More return values need to be added here]
=head1 EXAMPLE