From ceedfcde29d7654f2aae1fbbcb0bf89d0f30ad0d Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Thu, 3 Dec 2015 22:25:15 -0600 Subject: fix the comment so that it is no longer nonsense --- src/cryptography/hazmat/backends/openssl/x509.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/cryptography/hazmat/backends/openssl/x509.py b/src/cryptography/hazmat/backends/openssl/x509.py index 01232df2..4e91bf43 100644 --- a/src/cryptography/hazmat/backends/openssl/x509.py +++ b/src/cryptography/hazmat/backends/openssl/x509.py @@ -924,7 +924,7 @@ class _CertificateSigningRequest(object): @property def tbs_certrequest_bytes(self): pp = self._backend._ffi.new("unsigned char **") - # the X509_CINF struct holds the tbsCertificate data + # the X509_REQ_INFO struct holds the CertificateRequestInfo data res = self._backend._lib.i2d_X509_REQ_INFO(self._x509_req.req_info, pp) self._backend.openssl_assert(res > 0) pp = self._backend._ffi.gc( -- cgit v1.2.3