diff options
author | Tobias Brunner <tobias@strongswan.org> | 2011-11-25 09:52:19 +0100 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2011-11-25 09:52:19 +0100 |
commit | a660f1426e2ba8fc600fa38d730a68937b65cafb (patch) | |
tree | f39b0860516e5f63707e114aa0fe675df3edffd7 /src | |
parent | b46a5cd4efa9e9e75817ef036975a762758620b9 (diff) | |
download | strongswan-a660f1426e2ba8fc600fa38d730a68937b65cafb.tar.bz2 strongswan-a660f1426e2ba8fc600fa38d730a68937b65cafb.tar.xz |
Fixed missing initializer compiler warning.
Diffstat (limited to 'src')
-rw-r--r-- | src/libstrongswan/credentials/certificates/x509.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstrongswan/credentials/certificates/x509.h b/src/libstrongswan/credentials/certificates/x509.h index fec02dbad..71abdda32 100644 --- a/src/libstrongswan/credentials/certificates/x509.h +++ b/src/libstrongswan/credentials/certificates/x509.h @@ -76,12 +76,12 @@ enum x509_constraint_t { * X.509 certPolicy extension. */ struct x509_cert_policy_t { - /** OID of certPolicy */ - chunk_t oid; /** Certification Practice Statement URI qualifier */ char *cps_uri; /** UserNotice Text qualifier */ char *unotice_text; + /** OID of certPolicy */ + chunk_t oid; }; /** |