From f9315d074e4fde63ee5df958ac2cea78423d9954 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Thu, 1 Jul 2010 07:32:24 +0000 Subject: [PATCH] fix --- src/monkey/mail_sender.c | 4 ++-- 1 file 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() smtp_session_t session; smtp_message_t message; smtp_recipient_t recipient; - auth_context_t authctx; + // auth_context_t authctx; const smtp_status_t *status; struct sigaction sa; char *host = "localhost:25"; @@ -222,7 +222,7 @@ void sendMail() /* Free resources consumed by the program. */ smtp_destroy_session(session); - auth_destroy_context(authctx); + // auth_destroy_context(authctx); fclose(fp); auth_client_exit(); exit(0); -- 2.25.1