From ad65ae3a27c2100f62c8e34f1ef230d2db898c0c Mon Sep 17 00:00:00 2001 From: Brian Somers Date: Sat, 30 Mar 2002 12:47:29 +0000 Subject: [PATCH] Add a missing break --- usr.sbin/ppp/fsm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/usr.sbin/ppp/fsm.c b/usr.sbin/ppp/fsm.c index 47bcd68483f7..d4c89c4470a4 100644 --- a/usr.sbin/ppp/fsm.c +++ b/usr.sbin/ppp/fsm.c @@ -879,6 +879,7 @@ FsmRecvProtoRej(struct fsm *fp, struct fsmheader *lhp, struct mbuf *bp) case ST_CLOSED: case ST_CLOSING: NewState(fp, ST_CLOSED); + break; default: NewState(fp, ST_STOPPED); break;