Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
curl_sasl.c: Fixed compilation warning when verbose debug output disa…
…bled

curl_sasl.c:1317: warning: unused parameter 'conn'
  • Loading branch information
captain-caveman2k committed Jan 28, 2015
1 parent 8cc70db commit 6fdc865
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/curl_sasl.c
Expand Up @@ -1341,6 +1341,8 @@ static void state(struct SASL *sasl,
if(sasl->state != newstate)
infof(conn->data, "SASL %p state change from %s to %s\n",
(void *)sasl, names[sasl->state], names[newstate]);
#else
(void) conn;
#endif

sasl->state = newstate;
Expand Down

0 comments on commit 6fdc865

Please sign in to comment.