diff options
author | lloyd <[email protected]> | 2007-07-27 22:49:32 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2007-07-27 22:49:32 +0000 |
commit | b003b1c2f2fd53c2acc214623f2f0e0399ab02a8 (patch) | |
tree | db48bde6ddc2c5fff7e74e6ce73587107913536f | |
parent | 690a13333df4d1bdde1ac34e295cc387262cd86a (diff) |
Use Botan:: prefixes to work around a bug in Visual Studio C++ 2003. Patch
from Christophe Meessen on the development list.
-rw-r--r-- | src/x509stat.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/x509stat.cpp b/src/x509stat.cpp index fbf0266b0..45b858c02 100644 --- a/src/x509stat.cpp +++ b/src/x509stat.cpp @@ -41,8 +41,8 @@ X509_GlobalState::X509_GlobalState() { \ Certificate_Extension* make(const OID& oid) \ { \ - if(OIDS::name_of(oid, NAME)) \ - return new Cert_Extension::TYPE(); \ + if(Botan::OIDS::name_of(oid, NAME)) \ + return new Botan::Cert_Extension::TYPE(); \ return 0; \ } \ }; \ |