From 844ad9ad797fb5a8bdab03fafd215dfa0bf314dc Mon Sep 17 00:00:00 2001 From: a1346054 <36859588+a1346054@users.noreply.github.com> Date: Thu, 19 Aug 2021 14:16:31 +0000 Subject: [PATCH] fix spelling Signed-off-by: a1346054 <36859588+a1346054@users.noreply.github.com> --- oci-authenticator/flatpak-oci-authenticator.c | 2 +- tests/test-authenticator.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/oci-authenticator/flatpak-oci-authenticator.c b/oci-authenticator/flatpak-oci-authenticator.c index 2d611c69..1545c0c8 100644 --- a/oci-authenticator/flatpak-oci-authenticator.c +++ b/oci-authenticator/flatpak-oci-authenticator.c @@ -612,7 +612,7 @@ handle_request_ref_tokens (FlatpakAuthenticator *f_authenticator, g_variant_builder_init (&results, G_VARIANT_TYPE ("a{sv}")); g_variant_builder_add (&results, "{sv}", "tokens", g_variant_builder_end (&tokens)); - g_debug ("emiting OK response"); + g_debug ("emitting OK response"); flatpak_authenticator_request_emit_response (request, FLATPAK_AUTH_RESPONSE_OK, g_variant_builder_end (&results)); diff --git a/tests/test-authenticator.c b/tests/test-authenticator.c index 9fa9ec0f..3c3bb598 100644 --- a/tests/test-authenticator.c +++ b/tests/test-authenticator.c @@ -112,7 +112,7 @@ finish_request_ref_tokens (TokenRequestData *data) g_variant_builder_init (&results, G_VARIANT_TYPE ("a{sv}")); g_variant_builder_add (&results, "{sv}", "tokens", g_variant_builder_end (&tokens)); - g_debug ("emiting response"); + g_debug ("emitting response"); flatpak_authenticator_request_emit_response (data->request, FLATPAK_AUTH_RESPONSE_OK, g_variant_builder_end (&results)); @@ -130,9 +130,9 @@ http_incoming (GSocketService *service, g_assert_true (data->request != NULL); /* For the test, just assume any connection is a valid use of the web flow */ - g_debug ("handling incomming http request"); + g_debug ("handling incoming http request"); - g_debug ("emiting webflow done"); + g_debug ("emitting webflow done"); flatpak_authenticator_request_emit_webflow_done (data->request, options); finish_request_ref_tokens (data);