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.
diff --git a/src/ssl_sock.c b/src/ssl_sock.c
index 6374781..17f74c4 100644
--- a/src/ssl_sock.c
+++ b/src/ssl_sock.c
@@ -6356,10 +6356,8 @@
  */
 #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
 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. */
 	ref = LIST_NEXT(&ref->list, struct tls_keys_ref *, list);