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 wrap: on
line diff
--- a/src/smtp_out.c	Tue Oct 25 13:51:43 2011 +0200
+++ b/src/smtp_out.c	Tue Oct 25 14:31:28 2011 +0200
@@ -511,13 +511,12 @@
 }
 
 smtp_base*
-smtp_out_open_child(gchar *cmd, char *host)
+smtp_out_open_child(gchar *cmd)
 {
 	smtp_base *psb;
 	gint sock;
 
 	DEBUG(5) debugf("smtp_out_open_child entered, cmd = %s\n", cmd);
-	psb->remote_host = host;
 	sock = child(cmd);
 	if (sock <= 0) {
 		return NULL;