aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDavid du Colombier <0intro@gmail.com>2011-06-02 09:31:59 -0400
committerRuss Cox <rsc@swtch.com>2011-06-02 09:31:59 -0400
commit7fb06adf54aa6e47974673dcdeb328780927b8e6 (patch)
treef7e8650bff2fe348874937a9d41a03ade4e20a05 /src
parent89ec3cde42c7b1bb44e6a7b39f73dbec5e892d04 (diff)
downloadplan9port-7fb06adf54aa6e47974673dcdeb328780927b8e6.tar.gz
plan9port-7fb06adf54aa6e47974673dcdeb328780927b8e6.tar.bz2
plan9port-7fb06adf54aa6e47974673dcdeb328780927b8e6.zip
upas/smtp: remove reference to /net in mxdial
R=rsc CC=plan9port.codebot http://codereview.appspot.com/4535108
Diffstat (limited to 'src')
-rw-r--r--src/cmd/upas/smtp/mxdial.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/upas/smtp/mxdial.c b/src/cmd/upas/smtp/mxdial.c
index d68a5d16..60dfac5f 100644
--- a/src/cmd/upas/smtp/mxdial.c
+++ b/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);