summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Meyerriecks <rmeyerreicks@digium.com>2010-11-11 22:32:27 +0000
committerRuss Meyerriecks <rmeyerreicks@digium.com>2010-11-11 22:32:27 +0000
commit19c2395f42420ec9cda70f5e72b1d4759e5013f6 (patch)
tree5ba95294c6a341c1e8364495ec135703173a75b4
parent57d0461056f745ea3fdda31e2d9152c9a8777363 (diff)
dahdi_maint: Minor name change for the error counters
Make the error counters a little more readable, removed the prbs counters since they are not currently functioning git-svn-id: http://svn.asterisk.org/svn/dahdi/tools/trunk@9477 a0bf4364-ded3-4de4-8d8a-66a801d63aff
-rw-r--r--dahdi_maint.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/dahdi_maint.c b/dahdi_maint.c
index f9c9083..d3019d2 100644
--- a/dahdi_maint.c
+++ b/dahdi_maint.c
@@ -142,13 +142,11 @@ int main(int argc, char *argv[])
printf("Error counters not supported by the driver"\
" for this span\n");
printf("Span %d:\n", span);
- printf(">FEC : %d:\n", s.fecount);
- printf(">CEC : %d:\n", s.crc4count);
- printf(">CVC : %d:\n", s.cvcount);
- printf(">EBC : %d:\n", s.ebitcount);
- printf(">BEC : %d:\n", s.becount);
- printf(">PRBS: %d:\n", s.prbs);
- printf(">GES : %d:\n", s.errsec);
+ printf(">Framing Errors : %d:\n", s.fecount);
+ printf(">CRC Errors : %d:\n", s.crc4count);
+ printf(">Code Violations : %d:\n", s.cvcount);
+ printf(">E-bit Count : %d:\n", s.ebitcount);
+ printf(">General Errored Seconds : %d:\n", s.errsec);
return 0;
}