From 06d8e8d3f3be16ba7b68fdc5d175f6724397b978 Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Sun, 11 May 1997 00:44:37 +0000 Subject: [PATCH] Cosmetique --- usr.sbin/ppp/lcp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr.sbin/ppp/lcp.c b/usr.sbin/ppp/lcp.c index 6c1bfd7c99fc..d3c6d7a4d401 100644 --- a/usr.sbin/ppp/lcp.c +++ b/usr.sbin/ppp/lcp.c @@ -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);