diff options
author | brian <brian@FreeBSD.org> | 1998-06-15 19:06:58 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 1998-06-15 19:06:58 +0000 |
commit | 67efb0adddd5c04e645535e5454772d1da2b7105 (patch) | |
tree | 31d8e8fa6ed4fbfe3381d37f32142615c81eec99 /usr.sbin/ppp/fsm.c | |
parent | 13defc3317e75eb1c300da13d71fcfca0afa9fea (diff) | |
download | FreeBSD-src-67efb0adddd5c04e645535e5454772d1da2b7105.zip FreeBSD-src-67efb0adddd5c04e645535e5454772d1da2b7105.tar.gz |
o De-staticise things that don't need to be static.
o Bring the static ``ttystate'' into struct prompt so that
the tilde context is per prompt and not global.
o Comment the remaining static variables so that it's
clear why they're static.
o Add some XXX comments suggesting that our interface list
and our hostname should be re-generated after a signal
(say SIGUSR1) so that a machine with PCCARDs has a chance.
Diffstat (limited to 'usr.sbin/ppp/fsm.c')
-rw-r--r-- | usr.sbin/ppp/fsm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/ppp/fsm.c b/usr.sbin/ppp/fsm.c index 1e0f6cb..3a3b1f4 100644 --- a/usr.sbin/ppp/fsm.c +++ b/usr.sbin/ppp/fsm.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: fsm.c,v 1.27.2.35 1998/05/01 19:24:32 brian Exp $ + * $Id: fsm.c,v 1.28 1998/05/21 21:45:20 brian Exp $ * * TODO: */ @@ -914,6 +914,7 @@ fsm_Input(struct fsm *fp, struct mbuf *bp) * MUST send a unique id for each REQ.... */ static u_char id; + fsm_Output(fp, CODE_CODEREJ, id++, MBUF_CTOP(bp), bp->cnt); mbuf_Free(bp); return; |