aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-03-07 16:29:21 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-03-07 16:29:21 +0000
commit319e585aca5112d97b56b38ece4a552747043bba (patch)
tree3adce771c9749bb579282c6c642205b2d5d8db9c /driver.c
parent9ff30b595fcce9126cb44c155449aa218fdcefc7 (diff)
downloadfetchmail-319e585aca5112d97b56b38ece4a552747043bba.tar.gz
fetchmail-319e585aca5112d97b56b38ece4a552747043bba.tar.bz2
fetchmail-319e585aca5112d97b56b38ece4a552747043bba.zip
Fix bug that prevented localdomains from working.
svn path=/trunk/; revision=919
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver.c b/driver.c
index 73c43902..a7ee44d5 100644
--- a/driver.c
+++ b/driver.c
@@ -240,7 +240,7 @@ struct idlist **xmit_names; /* list of recipient names parsed out */
{
char *rhs;
- rhs = atsign + 1 + (strlen(atsign) - strlen(idp->id));
+ rhs = atsign + (strlen(atsign) - strlen(idp->id));
if ((rhs[-1] == '.' || rhs[-1] == '@')
&& strcmp(rhs, idp->id) == 0)
{