Skip to content

Commit

Permalink
strerror: Add CRYPT_E_REVOKED to SSPI error strings
Browse files Browse the repository at this point in the history
  • Loading branch information
jay committed Jul 16, 2015
1 parent cd20e81 commit de74e85
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/strerror.c
Original file line number Diff line number Diff line change
Expand Up @@ -824,6 +824,9 @@ const char *Curl_sspi_strerror (struct connectdata *conn, int err)
case SEC_E_OK:
txt = "No error";
break;
case CRYPT_E_REVOKED:
txt = "CRYPT_E_REVOKED";
break;
case SEC_E_ALGORITHM_MISMATCH:
txt = "SEC_E_ALGORITHM_MISMATCH";
break;
Expand Down

0 comments on commit de74e85

Please sign in to comment.