Skip to content
Snippets Groups Projects
Commit 569c1695 authored by Yang Tse's avatar Yang Tse
Browse files

use our own ISSPACE macro

parent ecbc7f89
No related branches found
No related tags found
No related merge requests found
......@@ -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, ','))) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment