summaryrefslogtreecommitdiffstats
path: root/crypto/x509
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2000-07-30 01:27:59 +0000
committerDr. Stephen Henson <steve@openssl.org>2000-07-30 01:27:59 +0000
commitbd4e152791acc2a41441bd5713cbddc4b3645d27 (patch)
treee1983b3384fbeb19ef792e271dacf49fabeef431 /crypto/x509
parentaa826d88e196ec13e1df4aeb2a55b8ea579aba60 (diff)
Document the new DN printing options.
Change a few names to be more meaningful. Fix typos in CA.pl docs.
Diffstat (limited to 'crypto/x509')
-rw-r--r--crypto/x509/x509.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/x509/x509.h b/crypto/x509/x509.h
index ef72135414..ffa6e01251 100644
--- a/crypto/x509/x509.h
+++ b/crypto/x509/x509.h
@@ -338,10 +338,10 @@ DECLARE_STACK_OF(X509_TRUST)
#define XN_FLAG_FN_MASK (0x3 << 21)
-#define XN_FLAG_FN_NONE 0 /* No field names */
-#define XN_FLAG_FN_SN (1 << 21) /* Object short name */
-#define XN_FLAG_FN_LN (2 << 21) /* Object long name */
-#define XN_FLAG_FN_OID (3 << 21) /* Always use OIDs */
+#define XN_FLAG_FN_SN 0 /* Object short name */
+#define XN_FLAG_FN_LN (1 << 21) /* Object long name */
+#define XN_FLAG_FN_OID (2 << 21) /* Always use OIDs */
+#define XN_FLAG_FN_NONE (3 << 21) /* No field names */
#define XN_FLAG_SPC_EQ (1 << 23) /* Put spaces round '=' */