Skip to content
Snippets Groups Projects
Commit 76f961d8 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Don't include date of birth in finger response for users' info.

parent fbb57b40
No related branches found
No related tags found
No related merge requests found
......@@ -537,7 +537,7 @@ write("\r\n");
write(format("From: %-36s Handle: %s\r\n", options.include_location ? u.location : "undisclosed" ,u.handle));
if(options.include_age)
write(format("%-42s ", format("Birth: %s (Age: %u years)" , u.birthdate,u.age)));
write(format("%-42s ", format("Age: %u years" , u.age)));
if(options.include_gender)
write(format("Gender: %s", u.gender));
if(options.include_age || options.include_gender)
......
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