summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2014-04-18 21:57:18 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2014-04-18 21:57:18 +0000
commit9979ebbdf2ea84d98abb8852cdc837bc616f5f34 (patch)
treeb4dfb5fe0138383ebba6117d116caa73abe9f1d2 /lib
parentb1d8ef947d2709ac90cb569f3c2e9ab7fc28f612 (diff)
tone down some XXXXX to not appear in grep
Diffstat (limited to 'lib')
-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