aboutsummaryrefslogtreecommitdiff
path: root/openssl/src
diff options
context:
space:
mode:
authorBenjamin Fry <[email protected]>2017-02-22 22:05:39 -0800
committerBenjamin Fry <[email protected]>2017-02-22 22:05:39 -0800
commitb4318960577f319e095f8a4f83bdf771f4b46309 (patch)
tree74f612499a9d1f57bd1333bd05f3b386d8ef5d47 /openssl/src
parentsome helpful documentation and example. (diff)
downloadrust-openssl-b4318960577f319e095f8a4f83bdf771f4b46309.tar.xz
rust-openssl-b4318960577f319e095f8a4f83bdf771f4b46309.zip
mention the common fields
Diffstat (limited to 'openssl/src')
-rw-r--r--openssl/src/x509/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl/src/x509/mod.rs b/openssl/src/x509/mod.rs
index 1a5f164b..bab1d711 100644
--- a/openssl/src/x509/mod.rs
+++ b/openssl/src/x509/mod.rs
@@ -327,7 +327,7 @@ impl X509Builder {
/// Sets the subject name of the certificate.
///
- /// When building certificates, the `C`, `ST`, and `O` options are required for the certificate to be a valid certificate in OpenSSL.
+ /// When building certificates, the `C`, `ST`, and `O` options are common when using the openssl command line tools.
/// The `CN` field is used for the common name, such as a DNS name.
///
/// ```