commit | 31ba576e0e038f957b8ddc0d4254b6d24b68a03d | [log] [tgz] |
---|---|---|
author | Jean-Paul Calderone <exarkun@divmod.com> | Mon Nov 01 17:30:41 2010 -0400 |
committer | Jean-Paul Calderone <exarkun@divmod.com> | Mon Nov 01 17:30:41 2010 -0400 |
tree | 9bb960179700c47aa1d4744af69b09dbc0df9f6c | |
parent | f6d0328dda1c6a256ade82396d735d128734ab84 [diff] [blame] |
Declare storage for them, too.
diff --git a/OpenSSL/ssl/ssl.c b/OpenSSL/ssl/ssl.c index d61983a..5e56030 100644 --- a/OpenSSL/ssl/ssl.c +++ b/OpenSSL/ssl/ssl.c
@@ -30,6 +30,11 @@ See the file RATIONALE for a short explanation of why this module was written.\n\ "; +crypto_X509Obj* (*new_x509)(X509*, int); +crypto_X509NameObj* (*new_x509name)(X509_NAME*, int); +crypto_X509StoreObj* (*new_x509store)(X509_STORE*, int); + + #ifndef PY3 void **crypto_API; #endif