Cosmetique

This commit is contained in:
Andrey A. Chernov 1997-05-11 00:44:37 +00:00
parent b1c4e61441
commit 06d8e8d3f3

View File

@ -17,7 +17,7 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* $Id: lcp.c,v 1.16 1997/05/11 00:16:00 ache Exp $
* $Id: lcp.c,v 1.17 1997/05/11 00:41:30 ache Exp $
*
* TODO:
* o Validate magic number received from peer.
@ -165,12 +165,12 @@ ReportLcpStatus()
printf("%s [%s]\n", fp->name, StateNames[fp->state]);
printf(
" his side: MRU %ld, ACCMAP %08lx, PROTOCOMP %d, ACFCOMP %d, MAGIC %08lx,\n"
" REJECT: %04lx\n",
" REJECT %04lx\n",
lcp->his_mru, lcp->his_accmap, lcp->his_protocomp, lcp->his_acfcomp,
lcp->his_magic, lcp->his_reject);
printf(
" my side: MRU %ld, ACCMAP %08lx, PROTOCOMP %d, ACFCOMP %d, MAGIC %08lx,\n"
" REJECT: %04lx\n",
" REJECT %04lx\n",
lcp->want_mru, lcp->want_accmap, lcp->want_protocomp, lcp->want_acfcomp,
lcp->want_magic, lcp->my_reject);
printf("\nDefaults: MRU = %ld, ACCMAP = %08x\t", VarMRU, VarAccmap);