aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2007-02-13 17:28:40 +0000
committerYang Tse <yangsita@gmail.com>2007-02-13 17:28:40 +0000
commit569c169559823383042202f46b5ec554428102ad (patch)
treead6021c251e8099b33e6051a91441681caf1af05 /lib
parentecbc7f89c00498375b81333f414f47db1f85e029 (diff)
use our own ISSPACE macro
Diffstat (limited to 'lib')
-rw-r--r--lib/nss.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/nss.c b/lib/nss.c
index 82c218d0a..1019b0c43 100644
--- 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, ','))) {