diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-03-07 16:29:21 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-03-07 16:29:21 +0000 |
commit | 319e585aca5112d97b56b38ece4a552747043bba (patch) | |
tree | 3adce771c9749bb579282c6c642205b2d5d8db9c /driver.c | |
parent | 9ff30b595fcce9126cb44c155449aa218fdcefc7 (diff) | |
download | fetchmail-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |