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

Bugfix: (introduced in rev 1.105) process_areafix() expected kludge line to

terminate in \n instead of \r.
parent 3d6df48c
No related branches found
No related tags found
No related merge requests found
......@@ -1360,7 +1360,7 @@ char *process_areafix(faddr_t addr,char* inbuf,char *password)
p=(char *)inbuf;
while(*p==1) { /* Skip kludge lines 11/05/95 */
FIND_CHAR(p,'\n');
FIND_CHAR(p,'\r');
if(*p)
p++; } /* Skip CR */
......
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