From 646e08021797e3a8906afe1c9ca01fd35829c7c0 Mon Sep 17 00:00:00 2001 From: Joern Siglen Date: Tue, 18 Mar 2025 14:36:03 +0100 Subject: [PATCH] dbginfo.sh: Fix typos in console messages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Joern Siglen Signed-off-by: Jan Höppner --- scripts/dbginfo.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/dbginfo.sh b/scripts/dbginfo.sh index b782e3df..82fdeb17 100755 --- a/scripts/dbginfo.sh +++ b/scripts/dbginfo.sh @@ -1094,16 +1094,16 @@ collect_tc() { if type tc >/dev/null; then if test -n "${NETWORK_DEVS}"; then - pr_collect_output "Trafic Control" + pr_collect_output "Traffic Control" for network_device in ${NETWORK_DEVS}; do call_run_command "tc -s qdisc show dev ${network_device}" \ "${OUTPUT_FILE_TC}" done else - pr_skip "Trafic Control: no devices" + pr_skip "Traffic Control: no devices" fi else - pr_skip "Trafic Control: tc not available" + pr_skip "Traffic Control: tc not available" fi }