diff options
author | John Crispin <john@openwrt.org> | 2015-10-11 16:23:26 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-10-11 16:23:26 +0000 |
commit | 2fc473cf3f9d2ef34d6f4f84bcab1c2db32d0f62 (patch) | |
tree | 52cd81d795daf58c64e5f05a4199c5769ee594a3 /target/linux/lantiq | |
parent | 4412334bea9d7946cb5b0d61647d81b330c7f2a9 (diff) | |
download | upstream-2fc473cf3f9d2ef34d6f4f84bcab1c2db32d0f62.tar.gz upstream-2fc473cf3f9d2ef34d6f4f84bcab1c2db32d0f62.tar.bz2 upstream-2fc473cf3f9d2ef34d6f4f84bcab1c2db32d0f62.zip |
lantiq: bugfix wrong non pre-emptive crc errors output
This patch fixes a wrong non pre-emptive crc errors output of
dsl_control.sh status.
Signed-off-by: Luca Debernardi <luca.debernardi@gmail.com>
SVN-Revision: 47172
Diffstat (limited to 'target/linux/lantiq')
-rwxr-xr-x | target/linux/lantiq/base-files/lib/functions/lantiq_dsl.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 46f3a176f5..dbeb344cde 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 } |