mirror of
https://github.com/curl/curl.git
synced 2026-05-16 08:36:22 +03:00
s/strcasecmp/strequal to make it more portable
This commit is contained in:
parent
70d834c512
commit
c1e2341f0a
1 changed files with 2 additions and 1 deletions
|
|
@ -43,6 +43,7 @@
|
|||
#include "strequal.h"
|
||||
#include "select.h"
|
||||
#include "sslgen.h"
|
||||
#include "strequal.h"
|
||||
|
||||
#define _MPRINTF_REPLACE /* use the internal *printf() functions */
|
||||
#include <curl/mprintf.h>
|
||||
|
|
@ -203,7 +204,7 @@ static SECStatus set_ciphers(struct SessionHandle *data, PRFileDesc * model,
|
|||
found = PR_FALSE;
|
||||
|
||||
for(i=0; i<ciphernum; i++) {
|
||||
if(!strcasecmp(cipher, cipherlist[i].name)) {
|
||||
if(strequal(cipher, cipherlist[i].name)) {
|
||||
cipher_state[i] = PR_TRUE;
|
||||
found = PR_TRUE;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue