From e77a1df6e71e0a47a8bacb82e548ca0a7929fed2 Mon Sep 17 00:00:00 2001 From: Jan Vaclav Date: Thu, 27 Mar 2025 11:13:46 +0100 Subject: [PATCH] firewall/utils: fix ntf -> nft typo Fixes: 4badc1f33ace ('firewall: fix signalling timeout error reason from _fw_nft_call()') (cherry picked from commit e39e11963685ed589c4c837a9e1dce44d68145a0) --- src/core/nm-firewall-utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/nm-firewall-utils.c b/src/core/nm-firewall-utils.c index b496061247..3b5b125dcf 100644 --- a/src/core/nm-firewall-utils.c +++ b/src/core/nm-firewall-utils.c @@ -466,13 +466,13 @@ _fw_nft_call_communicate_cb(GObject *source, GAsyncResult *result, gpointer user error->message); } else if (!call_data->timeout_source) { nm_log_dbg(LOGD_SHARING, - "firewall: ntf[%s]: communication timed out. Kill process", + "firewall: nft[%s]: communication timed out. Kill process", call_data->identifier); nm_clear_error(&error); nm_utils_error_set(&error, NM_UTILS_ERROR_UNKNOWN, "timeout communicating with nft"); } else { nm_log_dbg(LOGD_SHARING, - "firewall: ntf[%s]: communication cancelled. Kill process", + "firewall: nft[%s]: communication cancelled. Kill process", call_data->identifier); }