upas/smtp: remove reference to /net in mxdial

R=rsc
CC=plan9port.codebot
http://codereview.appspot.com/4535108
This commit is contained in:
David du Colombier 2011-06-02 09:31:59 -04:00 committed by Russ Cox
parent 89ec3cde42
commit 7fb06adf54

View file

@ -100,7 +100,7 @@ callmx(DS *ds, char *dest, char *domain)
}
/* dial each one in turn */
for(i = 0; i < nmx; i++){
snprint(addr, sizeof(addr), "%s/%s!%s!%s", ds->netdir, ds->proto,
snprint(addr, sizeof(addr), "%s!%s!%s", ds->proto,
mx[i].host, ds->service);
if(debug)
fprint(2, "mxdial trying %s (%d)\n", addr, i);