aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-07-01 07:32:24 +0000
committerChristian Grothoff <christian@grothoff.org>2010-07-01 07:32:24 +0000
commitf9315d074e4fde63ee5df958ac2cea78423d9954 (patch)
tree25101ef6f2f49ab7c5fda6f86792dcf6341cdf7c /src
parent14334e88b3afc8638a9d5f060dc10f1458e84da0 (diff)
downloadgnunet-f9315d074e4fde63ee5df958ac2cea78423d9954.tar.gz
gnunet-f9315d074e4fde63ee5df958ac2cea78423d9954.zip
fix
Diffstat (limited to 'src')
-rw-r--r--src/monkey/mail_sender.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/monkey/mail_sender.c b/src/monkey/mail_sender.c
index ff5d13e47..385198d06 100644
--- a/src/monkey/mail_sender.c
+++ b/src/monkey/mail_sender.c
@@ -150,7 +150,7 @@ void sendMail()
150 smtp_session_t session; 150 smtp_session_t session;
151 smtp_message_t message; 151 smtp_message_t message;
152 smtp_recipient_t recipient; 152 smtp_recipient_t recipient;
153 auth_context_t authctx; 153 // auth_context_t authctx;
154 const smtp_status_t *status; 154 const smtp_status_t *status;
155 struct sigaction sa; 155 struct sigaction sa;
156 char *host = "localhost:25"; 156 char *host = "localhost:25";
@@ -222,7 +222,7 @@ void sendMail()
222 /* Free resources consumed by the program. 222 /* Free resources consumed by the program.
223 */ 223 */
224 smtp_destroy_session(session); 224 smtp_destroy_session(session);
225 auth_destroy_context(authctx); 225 // auth_destroy_context(authctx);
226 fclose(fp); 226 fclose(fp);
227 auth_client_exit(); 227 auth_client_exit();
228 exit(0); 228 exit(0);