CLEANUP: ssl: Remove useless local variable in tlskeys_list_get_next()
authorTim Duesterhus <tim@bastelstu.be>
Sun, 3 Jan 2021 00:29:56 +0000 (01:29 +0100)
committerWilly Tarreau <w@1wt.eu>
Tue, 5 Jan 2021 09:25:20 +0000 (10:25 +0100)
commitcb8b281c022912820898ae9ebaea868cf1a07d58
treef0e06a2801c7e212d4aec781ef50b3c7f4c7fa0b
parent2c7bb33144d1cb89962f592062c9450870b662af
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.
src/ssl_sock.c