diff options
author | phk <phk@FreeBSD.org> | 1996-01-30 20:04:34 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1996-01-30 20:04:34 +0000 |
commit | 62d807ed9dfe8c9430d2db3afa124efed328d1b0 (patch) | |
tree | 04717b08fcf28642e80f61fe3097f1a5f0a6c0f8 /usr.sbin/ppp/ccp.c | |
parent | 212c3eba091c449ada760e94396c1d08a828ea7f (diff) | |
download | FreeBSD-src-62d807ed9dfe8c9430d2db3afa124efed328d1b0.zip FreeBSD-src-62d807ed9dfe8c9430d2db3afa124efed328d1b0.tar.gz |
Use libmd's MD5.
inline hdlc checksum calculation.
make big tables const.
Diffstat (limited to 'usr.sbin/ppp/ccp.c')
-rw-r--r-- | usr.sbin/ppp/ccp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ppp/ccp.c b/usr.sbin/ppp/ccp.c index d236c61..6371a2e 100644 --- a/usr.sbin/ppp/ccp.c +++ b/usr.sbin/ppp/ccp.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: ccp.c,v 1.4 1996/01/10 21:27:36 phk Exp $ + * $Id: ccp.c,v 1.5 1996/01/11 17:48:37 phk Exp $ * * TODO: * o Support other compression protocols @@ -69,7 +69,7 @@ struct fsm CcpFsm = { CcpDecodeConfig, }; -static char *cftypes[] = { +static char const *cftypes[] = { /* 0 */ "OUI", "PRED1", "PRED2", "PUDDLE", /* 4 */ "???", "???", "???", "???", /* 8 */ "???", "???", "???", "???", |