Commit d873c820 authored by Guenter Knauf's avatar Guenter Knauf
Browse files

Changed comparison to match size_t var type.

parent 41cf1f40
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -576,7 +576,7 @@ static CURLcode smtp_state_authlogin_resp(struct connectdata *conn,
  else {
    l = smtp_auth_login_user(conn, &authuser);

    if(l <= 0)
    if(!l)
      result = CURLE_OUT_OF_MEMORY;
    else {
      result = Curl_pp_sendf(&conn->proto.smtpc.pp, "%s", authuser);