tupas/smtp: remove reference to /net in mxdial - plan9port - [fork] Plan 9 from user space
 (HTM) git clone git://src.adamsgaard.dk/plan9port
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 7fb06adf54aa6e47974673dcdeb328780927b8e6
 (DIR) parent 89ec3cde42c7b1bb44e6a7b39f73dbec5e892d04
 (HTM) Author: David du Colombier <0intro@gmail.com>
       Date:   Thu,  2 Jun 2011 09:31:59 -0400
       
       upas/smtp: remove reference to /net in mxdial
       
       R=rsc
       CC=plan9port.codebot
       http://codereview.appspot.com/4535108
       
       Diffstat:
         M src/cmd/upas/smtp/mxdial.c          |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/src/cmd/upas/smtp/mxdial.c b/src/cmd/upas/smtp/mxdial.c
       t@@ -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);