[svn-commits] rmeyerriecks: tools/trunk r9477 - /tools/trunk/dahdi_maint.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Thu Nov 11 16:32:40 CST 2010
Author: rmeyerriecks
Date: Thu Nov 11 16:32:27 2010
New Revision: 9477
URL: http://svnview.digium.com/svn/dahdi?view=rev&rev=9477
Log:
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
Modified:
tools/trunk/dahdi_maint.c
Modified: tools/trunk/dahdi_maint.c
URL: http://svnview.digium.com/svn/dahdi/tools/trunk/dahdi_maint.c?view=diff&rev=9477&r1=9476&r2=9477
==============================================================================
--- tools/trunk/dahdi_maint.c (original)
+++ tools/trunk/dahdi_maint.c Thu Nov 11 16:32:27 2010
@@ -142,13 +142,11 @@
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;
}
More information about the svn-commits
mailing list