aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstrongswan
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2007-04-20 12:38:35 +0000
committerAndreas Steffen <andreas.steffen@strongswan.org>2007-04-20 12:38:35 +0000
commitb073ad64b8e4c92d02090943f379c860d87af13d (patch)
tree0908d963fe15b4ba03faf342ed2889ae3770be4d /src/libstrongswan
parenta3590ac1bd2bba75700cda856e37d76edb4f015e (diff)
downloadstrongswan-b073ad64b8e4c92d02090943f379c860d87af13d.tar.bz2
strongswan-b073ad64b8e4c92d02090943f379c860d87af13d.tar.xz
isOcspSigner was not initialized
Diffstat (limited to 'src/libstrongswan')
-rwxr-xr-xsrc/libstrongswan/crypto/x509.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstrongswan/crypto/x509.c b/src/libstrongswan/crypto/x509.c
index 69805f290..6fb6dfa4f 100755
--- a/src/libstrongswan/crypto/x509.c
+++ b/src/libstrongswan/crypto/x509.c
@@ -1232,6 +1232,7 @@ x509_t *x509_create_from_chunk(chunk_t chunk, u_int level)
this->authKeyID = chunk_empty;
this->authKeySerialNumber = chunk_empty;
this->authority_flags = AUTH_NONE;
+ this->isOcspSigner = FALSE;
/* public functions */
this->public.equals = (bool (*) (const x509_t*,const x509_t*))equals;