From: Daniel Stenberg Date: Wed, 18 Dec 2013 12:53:45 +0000 (+0100) Subject: smtp: fix compiler warning X-Git-Tag: curl-7_35_0~226 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=74476609c36a103411b0ed3cc2bfaf65a2b80016;p=thirdparty%2Fcurl.git smtp: fix compiler warning smtp.c:478:21: error: unused variable 'smtpc' [-Werror=unused-variable] --- diff --git a/lib/smtp.c b/lib/smtp.c index 334814a8a5..07fec11f9c 100644 --- a/lib/smtp.c +++ b/lib/smtp.c @@ -475,7 +475,6 @@ static CURLcode smtp_perform_auth(struct connectdata *conn, static CURLcode smtp_perform_authentication(struct connectdata *conn) { CURLcode result = CURLE_OK; - struct smtp_conn *smtpc = &conn->proto.smtpc; const char *mech = NULL; char *initresp = NULL; size_t len = 0;