Skip to content
Snippets Groups Projects
Commit f26c5457 authored by rswindell's avatar rswindell
Browse files

Fix for last commit (use isspace instead of <=' ').

parent 57abe007
No related branches found
No related tags found
No related merge requests found
...@@ -1362,8 +1362,8 @@ char *process_areafix(faddr_t addr,char* inbuf,char *password) ...@@ -1362,8 +1362,8 @@ char *process_areafix(faddr_t addr,char* inbuf,char *password)
add_area.tag=NULL; add_area.tag=NULL;
del_area.tags=0; del_area.tags=0;
del_area.tag=NULL; del_area.tag=NULL;
for(l=0;l<m;l++) { for(l=0;l<m;l++) {
while(*(p+l) && *(p+l)<=' ') l++; while(*(p+l) && isspace(*(p+l)) l++;
while(*(p+l)==1) { /* Ignore kludge lines June-13-2004 */ while(*(p+l)==1) { /* Ignore kludge lines June-13-2004 */
while(*(p+l) && *(p+l)!='\r') l++; while(*(p+l) && *(p+l)!='\r') l++;
continue; continue;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment