]> granicus.if.org Git - curl/commitdiff
use our own ISSPACE macro
authorYang Tse <yangsita@gmail.com>
Tue, 13 Feb 2007 17:28:40 +0000 (17:28 +0000)
committerYang Tse <yangsita@gmail.com>
Tue, 13 Feb 2007 17:28:40 +0000 (17:28 +0000)
lib/nss.c

index 82c218d0a2a26b5e6d4e64f1d94c79cde221865f..1019b0c432a113c78ecb9b904d9cde538560f4a3 100644 (file)
--- a/lib/nss.c
+++ b/lib/nss.c
@@ -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, ','))) {