CLEANUP: h2: rename h2c_snd_settings() to h2c_send_settings()

It's the only function not called h2c_send_<something>() and it took me
a while to find it.
diff --git a/src/mux_h2.c b/src/mux_h2.c
index 8254288..c01a42a 100644
--- a/src/mux_h2.c
+++ b/src/mux_h2.c
@@ -753,7 +753,7 @@
  * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
  * the various settings codes.
  */
-static int h2c_snd_settings(struct h2c *h2c)
+static int h2c_send_settings(struct h2c *h2c)
 {
 	struct buffer *res;
 	char buf_data[100]; // enough for 15 settings
@@ -850,7 +850,7 @@
 		return 0;
 	}
 
-	ret2 = h2c_snd_settings(h2c);
+	ret2 = h2c_send_settings(h2c);
 	if (ret2 > 0)
 		b_del(&h2c->dbuf, ret1);