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

Better blank line detection/stripping in finger response.

parent c92817ad
No related branches found
No related tags found
No related merge requests found
......@@ -87,7 +87,10 @@ function list_users(show)
str=sock.readline();
if(str==null)
break;
response.push(truncsp(str));
str = truncsp(str);
if(str=="")
continue;
response.push(str);
}
sock.close();
......
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