[libsoup/hsts: 34/36] Minor method rename
- From: Claudio Saavedra <csaavedra src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libsoup/hsts: 34/36] Minor method rename
- Date: Tue, 25 Sep 2018 14:57:42 +0000 (UTC)
commit 64d58a44592c7d56ba32c203babb01295f90b034
Author: Claudio Saavedra <csaavedra igalia com>
Date: Tue Sep 25 10:48:57 2018 +0300
Minor method rename
It's only one STS header, no need for plurals
libsoup/soup-hsts-enforcer.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/libsoup/soup-hsts-enforcer.c b/libsoup/soup-hsts-enforcer.c
index 93c65bc5..ce8e45d7 100644
--- a/libsoup/soup-hsts-enforcer.c
+++ b/libsoup/soup-hsts-enforcer.c
@@ -454,7 +454,7 @@ soup_hsts_enforcer_process_sts_header (SoupHSTSEnforcer *hsts_enforcer,
}
static void
-got_sts_headers_cb (SoupMessage *msg, gpointer user_data)
+got_sts_header_cb (SoupMessage *msg, gpointer user_data)
{
SoupHSTSEnforcer *hsts_enforcer = SOUP_HSTS_ENFORCER (user_data);
@@ -501,7 +501,7 @@ preprocess_request (SoupHSTSEnforcer *enforcer, SoupMessage *msg)
} else if (scheme == SOUP_URI_SCHEME_HTTPS) {
soup_message_add_header_handler (msg, "got-headers",
"Strict-Transport-Security",
- G_CALLBACK (got_sts_headers_cb),
+ G_CALLBACK (got_sts_header_cb),
enforcer);
}
}
@@ -528,7 +528,7 @@ soup_hsts_enforcer_request_unqueued (SoupSessionFeature *feature,
SoupMessage *msg)
{
g_signal_handlers_disconnect_by_func (msg, message_restarted_cb, feature);
- g_signal_handlers_disconnect_by_func (msg, got_sts_headers_cb, feature);
+ g_signal_handlers_disconnect_by_func (msg, got_sts_header_cb, feature);
}
static void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]