aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorlloyd <[email protected]>2007-07-27 22:51:43 +0000
committerlloyd <[email protected]>2007-07-27 22:51:43 +0000
commit3f979f8b45eec53cfa44a2067885550fc85bd32e (patch)
tree16690190ecaba2d5ce74ecae289af301fa3e8bf7 /src
parent68a0f2fad07192a98369226216adee57ce0579b3 (diff)
Use Botan:: prefixes to work around a bug in Visual Studio C++ 2003. Patch
from Christophe Meessen on the development list.
Diffstat (limited to 'src')
-rw-r--r--src/x509stat.cpp4
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; \
} \
}; \