diff options
author | charnier <charnier@FreeBSD.org> | 2002-08-25 13:30:43 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 2002-08-25 13:30:43 +0000 |
commit | aa31b7d1e4fb1585f9c445a653bf78416fb59bab (patch) | |
tree | 0c0dc23f43413d9f4c243f3e11871d151f3f8c55 /usr.sbin/pppd/fsm.c | |
parent | 7dd9d470599f145845572ac1f0d4b621c19c1cdb (diff) | |
download | FreeBSD-src-aa31b7d1e4fb1585f9c445a653bf78416fb59bab.zip FreeBSD-src-aa31b7d1e4fb1585f9c445a653bf78416fb59bab.tar.gz |
Replace various spelling with FALLTHROUGH which is lint()able
Diffstat (limited to 'usr.sbin/pppd/fsm.c')
-rw-r--r-- | usr.sbin/pppd/fsm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pppd/fsm.c b/usr.sbin/pppd/fsm.c index a1fd948..7f5882c 100644 --- a/usr.sbin/pppd/fsm.c +++ b/usr.sbin/pppd/fsm.c @@ -170,7 +170,7 @@ fsm_open(f) case CLOSING: f->state = STOPPING; - /* fall through */ + /* FALLTHROUGH */ case STOPPED: case OPENED: if( f->flags & OPT_RESTART ){ @@ -674,7 +674,7 @@ fsm_protreject(f) switch( f->state ){ case CLOSING: UNTIMEOUT(fsm_timeout, f); /* Cancel timeout */ - /* fall through */ + /* FALLTHROUGH */ case CLOSED: f->state = CLOSED; if( f->callbacks->finished ) @@ -686,7 +686,7 @@ fsm_protreject(f) case ACKRCVD: case ACKSENT: UNTIMEOUT(fsm_timeout, f); /* Cancel timeout */ - /* fall through */ + /* FALLTHROUGH */ case STOPPED: f->state = STOPPED; if( f->callbacks->finished ) |