masqmail
diff src/smtp_out.c @ 372:b0708fac99dd
Fixed a problem with psb->remote_host, introduced in changeset 412385b57dc4
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Tue, 25 Oct 2011 14:31:28 +0200 |
parents | f122535c589e |
children |
line diff
1.1 --- a/src/smtp_out.c Tue Oct 25 13:51:43 2011 +0200 1.2 +++ b/src/smtp_out.c Tue Oct 25 14:31:28 2011 +0200 1.3 @@ -511,13 +511,12 @@ 1.4 } 1.5 1.6 smtp_base* 1.7 -smtp_out_open_child(gchar *cmd, char *host) 1.8 +smtp_out_open_child(gchar *cmd) 1.9 { 1.10 smtp_base *psb; 1.11 gint sock; 1.12 1.13 DEBUG(5) debugf("smtp_out_open_child entered, cmd = %s\n", cmd); 1.14 - psb->remote_host = host; 1.15 sock = child(cmd); 1.16 if (sock <= 0) { 1.17 return NULL;