diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2022-10-04 21:30:55 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2022-10-04 21:30:55 +0100 |
commit | 699f306744e5f0e1ad860a460454efe85fe63c74 (patch) | |
tree | be2842af3efb6470961b67c80d39e342dafaaf40 /src | |
parent | 635e657ce2c75c781d40469bbdd28645e64d89b0 (diff) |
Unbreak FreeBSD build
Broken-by: 96751ae76e
Diffstat (limited to 'src')
-rw-r--r-- | src/src/tls-openssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/src/tls-openssl.c b/src/src/tls-openssl.c index b46c0c7fd..68ad6f15b 100644 --- a/src/src/tls-openssl.c +++ b/src/src/tls-openssl.c @@ -2737,7 +2737,7 @@ if (init_options) DEBUG(D_tls) debug_printf("setting SSL CTX options: %016lx\n", init_options); SSL_CTX_set_options(ctx, init_options); { - ulong readback = SSL_CTX_clear_options(ctx, ~init_options); + uint64_t readback = SSL_CTX_clear_options(ctx, ~init_options); if (readback != init_options) return tls_error(string_sprintf( "SSL_CTX_set_option(%#lx)", init_options), host, NULL, errstr); |