diff options
author | tb <> | 2018-04-25 07:25:17 +0000 |
---|---|---|
committer | tb <> | 2018-04-25 07:25:17 +0000 |
commit | 2225014e9e21b521735cd7db7cea4d899863d67b (patch) | |
tree | 8078377f12f78cda120ae531d3e2e6e49c16c64d /src | |
parent | 6e1f0836ed5f34d217acbaba9981a1dbcc400844 (diff) | |
download | openbsd-2225014e9e21b521735cd7db7cea4d899863d67b.tar.gz openbsd-2225014e9e21b521735cd7db7cea4d899863d67b.tar.bz2 openbsd-2225014e9e21b521735cd7db7cea4d899863d67b.zip |
Fix capitalization of data. Pointed out by jsing and forgotten in
previous commit.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libssl/ssl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl.h b/src/lib/libssl/ssl.h index f996af188f..b68b262969 100644 --- a/src/lib/libssl/ssl.h +++ b/src/lib/libssl/ssl.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl.h,v 1.156 2018/04/25 07:10:39 tb Exp $ */ | 1 | /* $OpenBSD: ssl.h,v 1.157 2018/04/25 07:25:17 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -730,7 +730,7 @@ void SSL_CTX_sess_set_get_cb(SSL_CTX *ctx, | |||
730 | SSL_SESSION *(*get_session_cb)(struct ssl_st *ssl, | 730 | SSL_SESSION *(*get_session_cb)(struct ssl_st *ssl, |
731 | const unsigned char *data, int len, int *copy)); | 731 | const unsigned char *data, int len, int *copy)); |
732 | SSL_SESSION *(*SSL_CTX_sess_get_get_cb(SSL_CTX *ctx))(struct ssl_st *ssl, | 732 | SSL_SESSION *(*SSL_CTX_sess_get_get_cb(SSL_CTX *ctx))(struct ssl_st *ssl, |
733 | const unsigned char *Data, int len, int *copy); | 733 | const unsigned char *data, int len, int *copy); |
734 | void SSL_CTX_set_info_callback(SSL_CTX *ctx, void (*cb)(const SSL *ssl, | 734 | void SSL_CTX_set_info_callback(SSL_CTX *ctx, void (*cb)(const SSL *ssl, |
735 | int type, int val)); | 735 | int type, int val)); |
736 | void (*SSL_CTX_get_info_callback(SSL_CTX *ctx))(const SSL *ssl, int type, | 736 | void (*SSL_CTX_get_info_callback(SSL_CTX *ctx))(const SSL *ssl, int type, |