diff options
author | 2002-07-30 11:08:05 +0000 | |
---|---|---|
committer | 2002-07-30 11:08:05 +0000 | |
commit | 428837d1af6ee7883726f5a6f82d6bae10ac0025 (patch) | |
tree | 6cad96e6d9a4f7e09d07030b70c21d9902cf5e9b /lib/libssl/ssl_locl.h | |
parent | strip_chroot here as well. (diff) | |
download | wireguard-openbsd-428837d1af6ee7883726f5a6f82d6bae10ac0025.tar.xz wireguard-openbsd-428837d1af6ee7883726f5a6f82d6bae10ac0025.zip |
apply patches from OpenSSL Security Advisory [30 July 2002],
http://marc.theaimsgroup.com/?l=openssl-dev&m=102802395104110&w=2
Diffstat (limited to 'lib/libssl/ssl_locl.h')
-rw-r--r-- | lib/libssl/ssl_locl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/libssl/ssl_locl.h b/lib/libssl/ssl_locl.h index 5208c4c42a1..0029edc3a6c 100644 --- a/lib/libssl/ssl_locl.h +++ b/lib/libssl/ssl_locl.h @@ -615,5 +615,8 @@ int ssl_ok(SSL *s); SSL_COMP *ssl3_comp_find(STACK_OF(SSL_COMP) *sk, int n); STACK_OF(SSL_COMP) *SSL_COMP_get_compression_methods(void); +/* die if we have to */ +void OpenSSLDie(const char *file,int line,const char *assertion); +#define die(e) ((e) ? (void)0 : OpenSSLDie(__FILE__, __LINE__, #e)) #endif |