diff options
author | lloyd <[email protected]> | 2010-10-18 17:39:51 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-10-18 17:39:51 +0000 |
commit | 8aceb41ff4938e52d07a69235c25c3f67d016413 (patch) | |
tree | 7b860061abaf7a107966875a7964a1ec662a3647 /src/cert/x509ca/x509_ca.cpp | |
parent | 1c68b5c2e6b70693b42f417733599cd51d578b4d (diff) |
s/u32bit/size_t/
Diffstat (limited to 'src/cert/x509ca/x509_ca.cpp')
-rw-r--r-- | src/cert/x509ca/x509_ca.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cert/x509ca/x509_ca.cpp b/src/cert/x509ca/x509_ca.cpp index c9523c6c8..4c4e62baa 100644 --- a/src/cert/x509ca/x509_ca.cpp +++ b/src/cert/x509ca/x509_ca.cpp @@ -98,7 +98,7 @@ X509_Certificate X509_CA::make_cert(PK_Signer* signer, const Extensions& extensions) { const u32bit X509_CERT_VERSION = 3; - const u32bit SERIAL_BITS = 128; + const size_t SERIAL_BITS = 128; BigInt serial_no(rng, SERIAL_BITS); |