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.astersk.org/svn/dahdi/tools/trunk@9477 17933a7a-c749-41c5-a318-cba88f637d49
This commit is contained in:
Russ Meyerriecks 2010-11-11 22:32:27 +00:00
parent 393aef02ef
commit 55a9fd2da2
1 changed files with 5 additions and 7 deletions

View File

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