On 27 Aug 2013 08:09, "Alex Hermann" <alex@speakup.nl> wrote:
>
> On Tuesday 27 August 2013, Victor Seva wrote:
> > -    if(proto.len!=3 && proto.len!=4)
> > +    if(proto.len<2 && proto.len>4)
> >       goto error;
>
> This is wrong, the condition will never match. You probably want to use ||
> instead of &&.

Yes. My mistake. I will try to change it as soon as I get home.

Thanks