diff options
Diffstat (limited to 'usr.sbin/ppp/async.c')
-rw-r--r-- | usr.sbin/ppp/async.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.sbin/ppp/async.c b/usr.sbin/ppp/async.c index f28e2f6..0fcf865 100644 --- a/usr.sbin/ppp/async.c +++ b/usr.sbin/ppp/async.c @@ -25,9 +25,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include <sys/types.h> #include <string.h> @@ -160,7 +162,7 @@ async_Decode(struct async *async, u_char c) async->mode |= MODE_ESC; break; } - /* Fall into ... */ + /* FALLTHROUGH */ default: if (async->length >= HDLCSIZE) { /* packet is too large, discard it */ |