Typos
authorLutz Jänicke <jaenicke@openssl.org>
Mon, 24 Sep 2007 11:22:58 +0000 (11:22 +0000)
committerLutz Jänicke <jaenicke@openssl.org>
Mon, 24 Sep 2007 11:22:58 +0000 (11:22 +0000)
PR: 1578
Submitted by: Charles Longeau <chl@tuxfamily.org>

crypto/dh/dh_check.c
doc/crypto/X509_NAME_print_ex.pod

index 10217c83dc13aa4adeb3865de502510ec75cee45..066898174e39e2a117369b65db6bfd21c9974d49 100644 (file)
@@ -62,7 +62,7 @@
 #include <openssl/dh.h>
 
 /* Check that p is a safe prime and
- * if g is 2, 3 or 5, check that is is a suitable generator
+ * if g is 2, 3 or 5, check that it is a suitable generator
  * where
  * for 2, p mod 24 == 11
  * for 3, p mod 12 == 5
index 919b90891937f9f6cd6c642ab596203d32131117..2579a5dc9dc6fa32c4a13c55027257f7eab21b47 100644 (file)
@@ -86,10 +86,10 @@ is equivalent to:
  B<ASN1_STRFLGS_RFC2253 | XN_FLAG_SEP_COMMA_PLUS | XN_FLAG_DN_REV | XN_FLAG_FN_SN | XN_FLAG_DUMP_UNKNOWN_FIELDS>
 
 
-B<XN_FLAG_ONELINE> is a more readable one line format it is the same as:
+B<XN_FLAG_ONELINE> is a more readable one line format which is the same as:
  B<ASN1_STRFLGS_RFC2253 | ASN1_STRFLGS_ESC_QUOTE | XN_FLAG_SEP_CPLUS_SPC | XN_FLAG_SPC_EQ | XN_FLAG_FN_SN>
 
-B<XN_FLAG_MULTILINE> is a multiline format is is the same as:
+B<XN_FLAG_MULTILINE> is a multiline format which is the same as:
  B<ASN1_STRFLGS_ESC_CTRL | ASN1_STRFLGS_ESC_MSB | XN_FLAG_SEP_MULTILINE | XN_FLAG_SPC_EQ | XN_FLAG_FN_LN | XN_FLAG_FN_ALIGN>
 
 B<XN_FLAG_COMPAT> uses a format identical to X509_NAME_print(): in fact it calls X509_NAME_print() internally.