diff options
author | lloyd <[email protected]> | 2006-08-23 01:58:27 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-08-23 01:58:27 +0000 |
commit | 43dc40692b247d5f00724a9ffe767219589ec664 (patch) | |
tree | 62b4abe804438574261986c7afe95315a4a38868 /misc/python/src | |
parent | ea756d250a0d12559a02e2e831abd9098607d284 (diff) |
Change a couple of enum names on the Python side
Diffstat (limited to 'misc/python/src')
-rw-r--r-- | misc/python/src/x509.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/python/src/x509.cpp b/misc/python/src/x509.cpp index 32960839a..c3bfef5e1 100644 --- a/misc/python/src/x509.cpp +++ b/misc/python/src/x509.cpp @@ -116,8 +116,8 @@ void export_x509() .value("tls_server", X509_Store::TLS_SERVER) .value("tls_client", X509_Store::TLS_CLIENT) .value("code_signing", X509_Store::CODE_SIGNING) - .value("email", X509_Store::EMAIL_PROTECTION) - .value("timestamping", X509_Store::TIME_STAMPING) + .value("email_protection", X509_Store::EMAIL_PROTECTION) + .value("time_stamping", X509_Store::TIME_STAMPING) .value("crl_signing", X509_Store::CRL_SIGNING); { |