diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2017-07-02 21:03:29 +0000 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2017-07-02 21:03:29 +0000 |
commit | f8533bb42247761b6b28bdff208cf03289d2fc75 (patch) | |
tree | 1020437768c3029c4fc898c0b242784c1a4d3c71 /WWW/Library/Implementation/HTMIME.c | |
parent | 5600928a5398f5f67b7e0915021dddf3e56acc74 (diff) | |
download | lynx-snapshots-f8533bb42247761b6b28bdff208cf03289d2fc75.tar.gz |
snapshot of project "lynx", label v2-8-9dev_14e
Diffstat (limited to 'WWW/Library/Implementation/HTMIME.c')
-rw-r--r-- | WWW/Library/Implementation/HTMIME.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/WWW/Library/Implementation/HTMIME.c b/WWW/Library/Implementation/HTMIME.c index 2014e459..1644793a 100644 --- a/WWW/Library/Implementation/HTMIME.c +++ b/WWW/Library/Implementation/HTMIME.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTMIME.c,v 1.94 2017/07/02 16:49:21 tom Exp $ + * $LynxId: HTMIME.c,v 1.95 2017/07/02 19:40:06 tom Exp $ * * MIME Message Parse HTMIME.c * ================== @@ -2004,7 +2004,7 @@ static void HTMIME_put_character(HTStream *me, int c) case miWWW_AUTHENTICATE: me->field = me->state; /* remember it */ me->state = miSKIP_GET_VALUE; - /* Fall through! */ + /* FALLTHRU */ case miSKIP_GET_VALUE: if (c == '\n') { @@ -2021,6 +2021,7 @@ static void HTMIME_put_character(HTStream *me, int c) me->value_pointer = me->value; me->state = miGET_VALUE; /* Fall through to store first character */ + /* FALLTHRU */ case miGET_VALUE: GET_VALUE: @@ -2033,6 +2034,7 @@ static void HTMIME_put_character(HTStream *me, int c) } } /* Fall through (if end of line) */ + /* FALLTHRU */ case miJUNK_LINE: if (c == '\n') { |