Skip to content

Commit

Permalink
smtp: fix compiler warning
Browse files Browse the repository at this point in the history
smtp.c:478:21: error: unused variable 'smtpc' [-Werror=unused-variable]
  • Loading branch information
bagder committed Dec 18, 2013
1 parent 6c62d84 commit 7447660
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/smtp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 7447660

Please sign in to comment.