diff options
author | Yang Tse <yangsita@gmail.com> | 2007-02-13 17:28:40 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2007-02-13 17:28:40 +0000 |
commit | 569c169559823383042202f46b5ec554428102ad (patch) | |
tree | ad6021c251e8099b33e6051a91441681caf1af05 /lib/nss.c | |
parent | ecbc7f89c00498375b81333f414f47db1f85e029 (diff) | |
download | curl-569c169559823383042202f46b5ec554428102ad.tar.gz |
use our own ISSPACE macro
Diffstat (limited to 'lib/nss.c')
-rw-r--r-- | lib/nss.c | 2 |
1 files changed, 1 insertions, 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, ','))) { |