diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-05-06 13:45:44 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-05-06 13:45:44 +0000 |
commit | 60904e5548f4304d027739e998587252e5562949 (patch) | |
tree | c983395618d60db4d2a37bf1a8fb733baf8d834e /driver.c | |
parent | 48edecb8654348e5de7e5c35de3da60bc2553123 (diff) | |
download | fetchmail-60904e5548f4304d027739e998587252e5562949.tar.gz fetchmail-60904e5548f4304d027739e998587252e5562949.tar.bz2 fetchmail-60904e5548f4304d027739e998587252e5562949.zip |
Cosmetic fix.
svn path=/trunk/; revision=1759
Diffstat (limited to 'driver.c')
-rw-r--r-- | driver.c | 21 |
1 files changed, 11 insertions, 10 deletions
@@ -261,16 +261,17 @@ struct idlist **xmit_names; /* list of recipient names parsed out */ int sl; int off = 0; - /* - * If the name of the user begins with a - * qmail virtual domain prefix, remove - * the prefix - */ - if (ctl->server.qvirtual) - { - sl=strlen(ctl->server.qvirtual); - if (!strncasecmp(name,ctl->server.qvirtual,sl)) off=sl; - } + /* + * If the name of the user begins with a + * qmail virtual domain prefix, remove + * the prefix. + */ + if (ctl->server.qvirtual) + { + sl = strlen(ctl->server.qvirtual); + if (!strncasecmp(name,ctl->server.qvirtual,sl)) + off = sl; + } lname = idpair_find(&ctl->localnames, name+off); if (!lname && ctl->wildcard) |