diff options
author | jsing <> | 2017-01-21 04:18:18 +0000 |
---|---|---|
committer | jsing <> | 2017-01-21 04:18:18 +0000 |
commit | a8eda323fe433edd514a5d6631780b19befdd1dc (patch) | |
tree | a89732c916fe8cfbd5c4aec8143ebdff1f13a8d7 /src | |
parent | 1a36bd5f90e2ab590f76d8948622d36c482b5ca8 (diff) | |
download | openbsd-a8eda323fe433edd514a5d6631780b19befdd1dc.tar.gz openbsd-a8eda323fe433edd514a5d6631780b19befdd1dc.tar.bz2 openbsd-a8eda323fe433edd514a5d6631780b19befdd1dc.zip |
Expand DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN macro.
No change in preprocessor output (ignoring whitespace and line numbers).
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libssl/ssl_locl.h | 4 |
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); | |||
518 | int ssl_get_prev_session(SSL *s, unsigned char *session, int len, | 518 | int ssl_get_prev_session(SSL *s, unsigned char *session, int len, |
519 | const unsigned char *limit); | 519 | const unsigned char *limit); |
520 | int ssl_cipher_id_cmp(const SSL_CIPHER *a, const SSL_CIPHER *b); | 520 | int ssl_cipher_id_cmp(const SSL_CIPHER *a, const SSL_CIPHER *b); |
521 | DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(SSL_CIPHER, SSL_CIPHER, ssl_cipher_id); | 521 | SSL_CIPHER *OBJ_bsearch_ssl_cipher_id(SSL_CIPHER *key, SSL_CIPHER const *base, int num); |
522 | int ssl_cipher_ptr_id_cmp(const SSL_CIPHER * const *ap, | 522 | int ssl_cipher_ptr_id_cmp(const SSL_CIPHER * const *ap, |
523 | const SSL_CIPHER * const *bp); | 523 | const SSL_CIPHER * const *bp); |
524 | STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s, const unsigned char *p, | 524 | STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s, const unsigned char *p, |