aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTim D. Smith <github@tim-smith.us>2018-03-29 14:08:36 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2018-03-29 17:08:36 -0400
commit38e4d197a0d317e676f4e351a9c80935d5a771f4 (patch)
tree91c1200ff4cd43c894b9da53b1c455c60874f88b /src
parent67ddb8f79b83a64a136ddf6d86a4dbd29d2afa7a (diff)
downloadcryptography-38e4d197a0d317e676f4e351a9c80935d5a771f4.tar.gz
cryptography-38e4d197a0d317e676f4e351a9c80935d5a771f4.tar.bz2
cryptography-38e4d197a0d317e676f4e351a9c80935d5a771f4.zip
Fix typo (#4178)
Diffstat (limited to 'src')
-rw-r--r--src/cryptography/hazmat/backends/openssl/encode_asn1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptography/hazmat/backends/openssl/encode_asn1.py b/src/cryptography/hazmat/backends/openssl/encode_asn1.py
index 89b2f7f7..4bea03e6 100644
--- a/src/cryptography/hazmat/backends/openssl/encode_asn1.py
+++ b/src/cryptography/hazmat/backends/openssl/encode_asn1.py
@@ -105,7 +105,7 @@ def _encode_name_gc(backend, attributes):
def _encode_sk_name_entry(backend, attributes):
"""
- The sk_X50_NAME_ENTRY created will not be gc'd.
+ The sk_X509_NAME_ENTRY created will not be gc'd.
"""
stack = backend._lib.sk_X509_NAME_ENTRY_new_null()
for attribute in attributes: