diff options
author | lloyd <[email protected]> | 2010-10-29 14:43:03 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-10-29 14:43:03 +0000 |
commit | 1f438bfa0ef0777cdee8585a1061c7b355cf5222 (patch) | |
tree | f13e5e71b5ff15eb291233f9a29b4c4dd8f97a8c /src/pubkey | |
parent | e8b1e9cb1dde969a73c3d33f192162a9ec6a2b4b (diff) |
s/u32bit/size_t/
Diffstat (limited to 'src/pubkey')
-rw-r--r-- | src/pubkey/x509_key.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pubkey/x509_key.cpp b/src/pubkey/x509_key.cpp index d321ce338..4714b1285 100644 --- a/src/pubkey/x509_key.cpp +++ b/src/pubkey/x509_key.cpp @@ -115,7 +115,7 @@ Key_Constraints find_constraints(const Public_Key& pub_key, { const std::string name = pub_key.algo_name(); - u32bit constraints = 0; + size_t constraints = 0; if(name == "DH" || name == "ECDH") constraints |= KEY_AGREEMENT; |