1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

use our own ISSPACE macro

This commit is contained in:
Yang Tse 2007-02-13 17:28:40 +00:00
parent ecbc7f89c0
commit 569c169559

View File

@ -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, ','))) {