dbginfo.sh: Fix typos in console messages

Signed-off-by: Joern Siglen <siglen@de.ibm.com>
Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
This commit is contained in:
Joern Siglen
2025-03-18 14:36:03 +01:00
committed by Jan Höppner
parent 3fd8c48245
commit 646e080217

View File

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