At Tue, 03 Sep 2013 15:30:24 +0400,
Sergej Pupykin <[email protected]> wrote:
> f22f3150a746f9c0dc9ac18782ad547649ce1a3d looks wrong.
> 
> +       while (rest[i]) {
> +             if (wantquote && rest[i]=='"')
> +                     break;
> +             if (! wantquote && isspace(rest[i]))
> +                     break;
> +             i++;
> +     }
> +             
> +     
> 
> probably should be
> 
> +             if (! wantquote && (isspace(rest[i]) || rest[i] == ';'))
> 
> or something like this.

Tested, this change fixes the empty messages problem.
_______________________________________________
DBmail mailing list
[email protected]
http://mailman.fastxs.nl/cgi-bin/mailman/listinfo/dbmail

Reply via email to