Typo in log message : errros -> errors

This commit is contained in:
Gary Palmer 1995-07-30 15:18:29 +00:00
parent 79ccb9aff3
commit 4545963cd1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=9797

View File

@ -17,7 +17,7 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* $Id: hdlc.c,v 1.3 1995/05/30 03:50:33 rgrimes Exp $
* $Id: hdlc.c,v 1.4 1995/07/08 17:46:49 amurai Exp $
*
* TODO:
*/
@ -295,7 +295,7 @@ HdlcErrorCheck()
struct hdlcstat *op = &laststat;
if (bcmp(hp, op, sizeof(laststat))) {
LogPrintf(LOG_PHASE, "HDLC errros -> FCS: %u ADDR: %u COMD: %u PROTO: %u\n",
LogPrintf(LOG_PHASE, "HDLC errors -> FCS: %u ADDR: %u COMD: %u PROTO: %u\n",
hp->badfcs - op->badfcs, hp->badaddr - op->badaddr,
hp->badcommand - op->badcommand, hp->unknownproto - op->unknownproto);
}