diff options
author | 2014-04-30 01:05:50 +0000 | |
---|---|---|
committer | 2014-04-30 01:05:50 +0000 | |
commit | de141f2d4e9fbbf3ad1143a280c52f8bf7ddb7bc (patch) | |
tree | 2cb7b19cf37942513fecaf44673c6c5323e9d51b /lib/libssl/ssl.h | |
parent | sync (diff) | |
download | wireguard-openbsd-de141f2d4e9fbbf3ad1143a280c52f8bf7ddb7bc.tar.xz wireguard-openbsd-de141f2d4e9fbbf3ad1143a280c52f8bf7ddb7bc.zip |
i suck at math. b - 8 = 3, not 4. detected by Antoine Pitrou. thanks.
Diffstat (limited to 'lib/libssl/ssl.h')
-rw-r--r-- | lib/libssl/ssl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libssl/ssl.h b/lib/libssl/ssl.h index 1276b2ff47e..2325996f656 100644 --- a/lib/libssl/ssl.h +++ b/lib/libssl/ssl.h @@ -555,7 +555,7 @@ struct ssl_session_st { /* SSL_OP_ALL: various bug workarounds that should be rather harmless. * This used to be 0x000FFFFFL before 0.9.7. */ -#define SSL_OP_ALL 0x800004FFL +#define SSL_OP_ALL 0x800003FFL /* DTLS options */ #define SSL_OP_NO_QUERY_MTU 0x00001000L |