#528, Redundant rule? quoted-str-nf

On 2013-12-13 11:36, Simon Yarde wrote:
> Seems quoted-str-nf in chunk-ext is now redundant?
>
> -- > chunk-ext      = *( ";" chunk-ext-name [ "=" chunk-ext-val ] )
> -- >
> -- > chunk-ext-name = token
> -- > chunk-ext-val  = token / quoted-str-nf
> -- >
> -- > quoted-str-nf  = DQUOTE *( qdtext-nf / quoted-pair ) DQUOTE
> -- >                ; like quoted-string, but disallowing line folding
> -- > qdtext-nf      = HTAB / SP / %x21 / %x23-5B / %x5D-7E / obs-text
>
>
> -- > quoted-string  = DQUOTE *( qdtext / quoted-pair ) DQUOTE
> -- > qdtext         = HTAB / SP /%x21 / %x23-5B / %x5D-7E / obs-text
> -- > obs-text       = %x80-FF
>
>
> chunk-ext could be simplified to:
>
> -- > chunk-ext      = *( ";" chunk-ext-name [ "=" chunk-ext-val ] )
> -- >
> -- > chunk-ext-name = token
> -- > chunk-ext-val  = token / quoted-string
>
>
> Best Regards
>
> Simon

Good catch. quoted-string changed in [1966] not to allow line folding.

Fixed with <http://trac.tools.ietf.org/wg/httpbis/trac/changeset/2509>.

Best regards, Julian

Received on Friday, 13 December 2013 12:23:17 UTC