diff mbox

[OpenWrt-Devel] lantiq: bugfix wrong non pre-emptive crc errors output

Message ID 1444522869-1328-1-git-send-email-luca.debernardi@gmail.com
State Accepted
Headers show

Commit Message

Luca Debernardi Oct. 11, 2015, 12:21 a.m. UTC
This patch fixes a wrong non pre-emptive crc errors output of
dsl_control.sh status.
---
 target/linux/lantiq/base-files/lib/functions/lantiq_dsl.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/target/linux/lantiq/base-files/lib/functions/lantiq_dsl.sh b/target/linux/lantiq/base-files/lib/functions/lantiq_dsl.sh
index 46f3a17..dbeb344 100755
--- a/target/linux/lantiq/base-files/lib/functions/lantiq_dsl.sh
+++ b/target/linux/lantiq/base-files/lib/functions/lantiq_dsl.sh
@@ -437,7 +437,7 @@  errors() {
 		echo "Loss of Signal Seconds (LOSS):            Near: ${lossn} / Far: ${lossf}"
 		echo "Unavailable Seconds (UAS):                Near: ${uasn} / Far: ${uasf}"
 		echo "Header Error Code Errors (HEC):           Near: ${hecn} / Far: ${hecf}"
-		echo "Non Pre-emtive CRC errors (CRC_P):        Near: ${crcp_pn} / Far: ${crcp_pf}"
+		echo "Non Pre-emtive CRC errors (CRC_P):        Near: ${crc_pn} / Far: ${crc_pf}"
 		echo "Pre-emtive CRC errors (CRCP_P):           Near: ${crcp_pn} / Far: ${crcp_pf}"
 	fi
 }