firewall/utils: fix ntf -> nft typo

Fixes: 4badc1f33a ('firewall: fix signalling timeout error reason from _fw_nft_call()')
(cherry picked from commit e39e119636)
This commit is contained in:
Jan Vaclav 2025-03-27 11:13:46 +01:00
parent 6f480d9494
commit e77a1df6e7

View file

@ -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);
}