summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortedu <>2014-04-18 21:57:17 +0000
committertedu <>2014-04-18 21:57:17 +0000
commit936831070ff8a2e075547633aeb6b0d2067ab36d (patch)
tree45d68e8e79edd5aab98fb0553cb4778dc5c3ed18 /src
parentab7eb25a34dadf90e21160d7167c62b2755bba29 (diff)
downloadopenbsd-936831070ff8a2e075547633aeb6b0d2067ab36d.tar.gz
openbsd-936831070ff8a2e075547633aeb6b0d2067ab36d.tar.bz2
openbsd-936831070ff8a2e075547633aeb6b0d2067ab36d.zip
tone down some XXXXX to not appear in grep
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/asn1/asn1.h2
-rw-r--r--src/lib/libcrypto/des/fcrypt.c2
-rw-r--r--src/lib/libssl/src/crypto/asn1/asn1.h2
-rw-r--r--src/lib/libssl/src/crypto/des/fcrypt.c2
-rw-r--r--src/lib/libssl/src/doc/crypto/BIO_s_bio.pod2
5 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/libcrypto/asn1/asn1.h b/src/lib/libcrypto/asn1/asn1.h
index 3daebc078f..e6c93deb2c 100644
--- a/src/lib/libcrypto/asn1/asn1.h
+++ b/src/lib/libcrypto/asn1/asn1.h
@@ -494,7 +494,7 @@ typedef const ASN1_ITEM * ASN1_ITEM_EXP(void);
494 494
495/* These determine what 'dumping' does, we can dump the 495/* These determine what 'dumping' does, we can dump the
496 * content octets or the DER encoding: both use the 496 * content octets or the DER encoding: both use the
497 * RFC2253 #XXXXX notation. 497 * RFC2253 #NNNNN notation.
498 */ 498 */
499 499
500#define ASN1_STRFLGS_DUMP_DER 0x200 500#define ASN1_STRFLGS_DUMP_DER 0x200
diff --git a/src/lib/libcrypto/des/fcrypt.c b/src/lib/libcrypto/des/fcrypt.c
index d02189b290..08054a04c9 100644
--- a/src/lib/libcrypto/des/fcrypt.c
+++ b/src/lib/libcrypto/des/fcrypt.c
@@ -72,7 +72,7 @@ char *DES_fcrypt(const char *buf, const char *salt, char *ret)
72 /* eay 25/08/92 72 /* eay 25/08/92
73 * If you call crypt("pwd","*") as often happens when you 73 * If you call crypt("pwd","*") as often happens when you
74 * have * as the pwd field in /etc/passwd, the function 74 * have * as the pwd field in /etc/passwd, the function
75 * returns *\0XXXXXXXXX 75 * returns *\0xxxxxxxxx
76 * The \0 makes the string look like * so the pwd "*" would 76 * The \0 makes the string look like * so the pwd "*" would
77 * crypt to "*". This was found when replacing the crypt in 77 * crypt to "*". This was found when replacing the crypt in
78 * our shared libraries. People found that the disabled 78 * our shared libraries. People found that the disabled
diff --git a/src/lib/libssl/src/crypto/asn1/asn1.h b/src/lib/libssl/src/crypto/asn1/asn1.h
index 3daebc078f..e6c93deb2c 100644
--- a/src/lib/libssl/src/crypto/asn1/asn1.h
+++ b/src/lib/libssl/src/crypto/asn1/asn1.h
@@ -494,7 +494,7 @@ typedef const ASN1_ITEM * ASN1_ITEM_EXP(void);
494 494
495/* These determine what 'dumping' does, we can dump the 495/* These determine what 'dumping' does, we can dump the
496 * content octets or the DER encoding: both use the 496 * content octets or the DER encoding: both use the
497 * RFC2253 #XXXXX notation. 497 * RFC2253 #NNNNN notation.
498 */ 498 */
499 499
500#define ASN1_STRFLGS_DUMP_DER 0x200 500#define ASN1_STRFLGS_DUMP_DER 0x200
diff --git a/src/lib/libssl/src/crypto/des/fcrypt.c b/src/lib/libssl/src/crypto/des/fcrypt.c
index d02189b290..08054a04c9 100644
--- a/src/lib/libssl/src/crypto/des/fcrypt.c
+++ b/src/lib/libssl/src/crypto/des/fcrypt.c
@@ -72,7 +72,7 @@ char *DES_fcrypt(const char *buf, const char *salt, char *ret)
72 /* eay 25/08/92 72 /* eay 25/08/92
73 * If you call crypt("pwd","*") as often happens when you 73 * If you call crypt("pwd","*") as often happens when you
74 * have * as the pwd field in /etc/passwd, the function 74 * have * as the pwd field in /etc/passwd, the function
75 * returns *\0XXXXXXXXX 75 * returns *\0xxxxxxxxx
76 * The \0 makes the string look like * so the pwd "*" would 76 * The \0 makes the string look like * so the pwd "*" would
77 * crypt to "*". This was found when replacing the crypt in 77 * crypt to "*". This was found when replacing the crypt in
78 * our shared libraries. People found that the disabled 78 * our shared libraries. People found that the disabled
diff --git a/src/lib/libssl/src/doc/crypto/BIO_s_bio.pod b/src/lib/libssl/src/doc/crypto/BIO_s_bio.pod
index 8d0a55a025..38271f3448 100644
--- a/src/lib/libssl/src/doc/crypto/BIO_s_bio.pod
+++ b/src/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
126B<bio1> and B<bio2>, or 0 on failure, with NULL pointers stored into the 126B<bio1> and B<bio2>, or 0 on failure, with NULL pointers stored into the
127locations for B<bio1> and B<bio2>. Check the error stack for more information. 127locations for B<bio1> and B<bio2>. Check the error stack for more information.
128 128
129[XXXXX: More return values need to be added here] 129[TODO: More return values need to be added here]
130 130
131=head1 EXAMPLE 131=head1 EXAMPLE
132 132