diff options
author | 2018-04-25 07:25:17 +0000 | |
---|---|---|
committer | 2018-04-25 07:25:17 +0000 | |
commit | 08d36fa8cf0359d2bc0851e11ace2277e67a88b2 (patch) | |
tree | 2301e0e0e6edb633be029dea21aa11836c1eff46 /lib/libssl/ssl.h | |
parent | The cookie in the cookie verify callback needs to be const. (diff) | |
download | wireguard-openbsd-08d36fa8cf0359d2bc0851e11ace2277e67a88b2.tar.xz wireguard-openbsd-08d36fa8cf0359d2bc0851e11ace2277e67a88b2.zip |
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, |