!isalnum statt isspace sollte den Parser weniger Anfaellig amchen fuer
bekloppte Mailer.
This commit is contained in:
Enno Rehling 2005-02-18 13:47:37 +00:00
parent afadc1c262
commit 94c596c388
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ free_orders(order ** olist)
order *
parse_order(const char * s, const struct locale * lang)
{
while (isspace(*(unsigned char*)s)) ++s;
while (!isalnum(*(unsigned char*)s)) ++s;
if (*s==0) return NULL;
else {
const char * sptr;