CLEANUP: ssl: Remove useless local variable in tlskeys_list_get_next()

`getnext` was only used to fill `ref` at the beginning of the function. Both
have the same type. Replace the parameter name by `ref` to remove the useless
local variable.
This commit is contained in:
Tim Duesterhus 2021-01-03 01:29:56 +01:00 committed by Willy Tarreau
parent 2c7bb33144
commit cb8b281c02

View File

@ -6356,10 +6356,8 @@ static int ssl_check_async_engine_count(void) {
*/ */
#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
static inline static inline
struct tls_keys_ref *tlskeys_list_get_next(struct tls_keys_ref *getnext, struct list *end) struct tls_keys_ref *tlskeys_list_get_next(struct tls_keys_ref *ref, struct list *end)
{ {
struct tls_keys_ref *ref = getnext;
/* Get next list entry. */ /* Get next list entry. */
ref = LIST_NEXT(&ref->list, struct tls_keys_ref *, list); ref = LIST_NEXT(&ref->list, struct tls_keys_ref *, list);