diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2018-04-25 07:25:18 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2018-04-25 07:25:18 +0000 |
commit | f0f4687c4937560b7ea682be8f0f3cdf75283fa1 (patch) | |
tree | c65112597bd4716bcb200f84958ee4220dc2fa4e /lib/libssl/ssl.h | |
parent | cea24fd3548c31ea169e3d33b5735fbdf150ce6b (diff) |
Fix capitalization of data. Pointed out by jsing and forgotten in
previous commit.
Diffstat (limited to 'lib/libssl/ssl.h')
-rw-r--r-- | lib/libssl/ssl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/ssl.h b/lib/libssl/ssl.h index f996af188f9..b68b262969d 100644 --- a/lib/libssl/ssl.h +++ b/lib/libssl/ssl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl.h,v 1.156 2018/04/25 07:10:39 tb Exp $ */ +/* $OpenBSD: ssl.h,v 1.157 2018/04/25 07:25:17 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -730,7 +730,7 @@ void SSL_CTX_sess_set_get_cb(SSL_CTX *ctx, SSL_SESSION *(*get_session_cb)(struct ssl_st *ssl, const unsigned char *data, int len, int *copy)); SSL_SESSION *(*SSL_CTX_sess_get_get_cb(SSL_CTX *ctx))(struct ssl_st *ssl, - const unsigned char *Data, int len, int *copy); + const unsigned char *data, int len, int *copy); void SSL_CTX_set_info_callback(SSL_CTX *ctx, void (*cb)(const SSL *ssl, int type, int val)); void (*SSL_CTX_get_info_callback(SSL_CTX *ctx))(const SSL *ssl, int type, |