mirror of
https://github.com/curl/curl.git
synced 2026-08-24 16:03:37 +03:00
use our own ISSPACE macro
This commit is contained in:
parent
ecbc7f89c0
commit
569c169559
1 changed files with 1 additions and 1 deletions
|
|
@ -180,7 +180,7 @@ static SECStatus set_ciphers(struct SessionHandle *data, PRFileDesc * model,
|
|||
cipher = cipher_list;
|
||||
|
||||
while(cipher_list && (cipher_list[0])) {
|
||||
while((*cipher) && (isspace(*cipher)))
|
||||
while((*cipher) && (ISSPACE(*cipher)))
|
||||
++cipher;
|
||||
|
||||
if((cipher_list = strchr(cipher, ','))) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue