From 38d899350ae94c35e7389f0c01da99dff8efda8d Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Thu, 9 Oct 1997 21:55:16 +0000 Subject: Handle RFC822 routes. svn path=/trunk/; revision=1494 --- driver.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'driver.c') diff --git a/driver.c b/driver.c index 7f361f69..3ec6e522 100644 --- a/driver.c +++ b/driver.c @@ -354,6 +354,9 @@ static char *parse_received(struct query *ctl, char *bufp) sp = ok + 4; if (*sp == '<') sp++; + while (*sp == '@') /* skip routes */ + while (*sp++ != ':') + continue; while (*sp && *sp != '>' && *sp != '@' && *sp != ';') if (!isspace(*sp)) *tp++ = *sp++; -- cgit v1.2.3