Fix a shadowed global variable warning

Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2609)
diff --git a/ssl/tls13_enc.c b/ssl/tls13_enc.c
index 3d8562b..6faa4e0 100644
--- a/ssl/tls13_enc.c
+++ b/ssl/tls13_enc.c
@@ -242,7 +242,7 @@
     return 1;
 }
 
-static int derive_secret_key_and_iv(SSL *s, int write,
+static int derive_secret_key_and_iv(SSL *s, int send,
                                     const unsigned char *insecret,
                                     const unsigned char *hash,
                                     const unsigned char *label,
@@ -281,7 +281,7 @@
         goto err;
     }
 
-    if (EVP_CipherInit_ex(ciph_ctx, ciph, NULL, NULL, NULL, write) <= 0
+    if (EVP_CipherInit_ex(ciph_ctx, ciph, NULL, NULL, NULL, send) <= 0
         || !EVP_CIPHER_CTX_ctrl(ciph_ctx, EVP_CTRL_AEAD_SET_IVLEN, ivlen, NULL)
         || (taglen != 0 && !EVP_CIPHER_CTX_ctrl(ciph_ctx, EVP_CTRL_AEAD_SET_TAG,
                                                 taglen, NULL))
@@ -292,7 +292,7 @@
 
 #ifdef OPENSSL_SSL_TRACE_CRYPTO
     if (s->msg_callback) {
-        int wh = write ? TLS1_RT_CRYPTO_WRITE : 0;
+        int wh = send ? TLS1_RT_CRYPTO_WRITE : 0;
 
         if (ciph->key_len)
             s->msg_callback(2, s->version, wh | TLS1_RT_CRYPTO_KEY,
@@ -459,7 +459,7 @@
     return ret;
 }
 
-int tls13_update_key(SSL *s, int write)
+int tls13_update_key(SSL *s, int send)
 {
     static const unsigned char application_traffic[] =
         "application traffic secret";
@@ -470,12 +470,12 @@
     EVP_CIPHER_CTX *ciph_ctx;
     int ret = 0;
 
-    if (s->server == write)
+    if (s->server == send)
         insecret = s->server_app_traffic_secret;
     else
         insecret = s->client_app_traffic_secret;
 
-    if (write) {
+    if (send) {
         iv = s->write_iv;
         ciph_ctx = s->enc_write_ctx;
         RECORD_LAYER_reset_write_sequence(&s->rlayer);
@@ -485,7 +485,7 @@
         RECORD_LAYER_reset_read_sequence(&s->rlayer);
     }
 
-    if (!derive_secret_key_and_iv(s, write, insecret, NULL, application_traffic,
+    if (!derive_secret_key_and_iv(s, send, insecret, NULL, application_traffic,
                                   sizeof(application_traffic) - 1, secret, iv,
                                   ciph_ctx))
         goto err;