aboutsummaryrefslogtreecommitdiff
path: root/lib/smtp.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2013-12-18 13:53:45 +0100
committerDaniel Stenberg <daniel@haxx.se>2013-12-18 13:53:45 +0100
commit74476609c36a103411b0ed3cc2bfaf65a2b80016 (patch)
tree8704d8a23b2bbe017fcb3c08085ac77d5fcc7c01 /lib/smtp.c
parent6c62d842327c2c9b97bbd680805e4127a32d6281 (diff)
smtp: fix compiler warning
smtp.c:478:21: error: unused variable 'smtpc' [-Werror=unused-variable]
Diffstat (limited to 'lib/smtp.c')
-rw-r--r--lib/smtp.c1
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;