diff options
author | John Crispin <blogic@openwrt.org> | 2015-10-11 16:23:26 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2015-10-11 16:23:26 +0000 |
commit | 847edb29ded9401000ef70d1ec74dfc424ccc83f (patch) | |
tree | 9ac29f563a7476f6021dcde7869e59faafd32150 /target | |
parent | 15f6d595739607e3e5c965a79bb2a05ab47648b6 (diff) | |
download | master-187ad058-847edb29ded9401000ef70d1ec74dfc424ccc83f.tar.gz master-187ad058-847edb29ded9401000ef70d1ec74dfc424ccc83f.tar.bz2 master-187ad058-847edb29ded9401000ef70d1ec74dfc424ccc83f.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>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@47172 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-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 } |