diff options
author | Daniel Stenberg <daniel@haxx.se> | 2013-12-18 13:53:45 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2013-12-18 13:53:45 +0100 |
commit | 74476609c36a103411b0ed3cc2bfaf65a2b80016 (patch) | |
tree | 8704d8a23b2bbe017fcb3c08085ac77d5fcc7c01 | |
parent | 6c62d842327c2c9b97bbd680805e4127a32d6281 (diff) |
smtp: fix compiler warning
smtp.c:478:21: error: unused variable 'smtpc' [-Werror=unused-variable]
-rw-r--r-- | lib/smtp.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/smtp.c b/lib/smtp.c index 334814a8a..07fec11f9 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; |