commit 7fb06adf54aa6e47974673dcdeb328780927b8e6 from: David du Colombier <0intro@gmail.com> via: Russ Cox date: Thu Jun 02 13:31:59 2011 UTC upas/smtp: remove reference to /net in mxdial R=rsc CC=plan9port.codebot http://codereview.appspot.com/4535108 commit - 89ec3cde42c7b1bb44e6a7b39f73dbec5e892d04 commit + 7fb06adf54aa6e47974673dcdeb328780927b8e6 blob - d68a5d16660de5938c73627a85d6a01be55e21bd blob + 60dfac5fe1c071f6d3877f00a5045ed543f93d1c --- src/cmd/upas/smtp/mxdial.c +++ src/cmd/upas/smtp/mxdial.c @@ -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);