summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib/libssl/ssl_locl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h
index 800c56e31b..5748875092 100644
--- a/src/lib/libssl/ssl_locl.h
+++ b/src/lib/libssl/ssl_locl.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssl_locl.h,v 1.144 2017/01/03 16:57:15 jsing Exp $ */ 1/* $OpenBSD: ssl_locl.h,v 1.145 2017/01/21 04:18:18 jsing 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 *
@@ -518,7 +518,7 @@ int ssl_get_new_session(SSL *s, int session);
518int ssl_get_prev_session(SSL *s, unsigned char *session, int len, 518int ssl_get_prev_session(SSL *s, unsigned char *session, int len,
519 const unsigned char *limit); 519 const unsigned char *limit);
520int ssl_cipher_id_cmp(const SSL_CIPHER *a, const SSL_CIPHER *b); 520int ssl_cipher_id_cmp(const SSL_CIPHER *a, const SSL_CIPHER *b);
521DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(SSL_CIPHER, SSL_CIPHER, ssl_cipher_id); 521SSL_CIPHER *OBJ_bsearch_ssl_cipher_id(SSL_CIPHER *key, SSL_CIPHER const *base, int num);
522int ssl_cipher_ptr_id_cmp(const SSL_CIPHER * const *ap, 522int ssl_cipher_ptr_id_cmp(const SSL_CIPHER * const *ap,
523 const SSL_CIPHER * const *bp); 523 const SSL_CIPHER * const *bp);
524STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s, const unsigned char *p, 524STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s, const unsigned char *p,