[4279] in Athena Bugs
vax 6.4R: /usr/ucb/finger
daemon@ATHENA.MIT.EDU (Jonathan I. Kamens)
Wed Feb 21 14:55:09 1990
Date: Wed, 21 Feb 90 14:54:45 -0500
From: Jonathan I. Kamens <jik@PIT-MANAGER.MIT.EDU>
To: bugs@ATHENA.MIT.EDU
System name: navigator
Type and version: CVAXSTAR 6.4R
Display type: SM
See my previous bug report.
*** /source/bsd-4.3/common/ucb/finger.c Tue Apr 14 19:49:01 1987
--- finger.c Wed Feb 21 14:53:41 1990
***************
*** 434,440 ****
if (isprint(c) || isspace(c))
putchar(c);
else
! putchar(c ^ 100);
}
fclose(fp);
putchar('\n');
--- 434,440 ----
if (isprint(c) || isspace(c))
putchar(c);
else
! putchar(c ^ 0100);
}
fclose(fp);
putchar('\n');
***************
*** 464,470 ****
if (isprint(c) || isspace(c))
putchar(c);
else
! putchar(c ^ 100);
okay = 0;
}
}
--- 464,470 ----
if (isprint(c) || isspace(c))
putchar(c);
else
! putchar(c ^ 0100);
okay = 0;
}
}
***************
*** 471,477 ****
else if (isprint(c) || isspace(c))
putchar(c);
else
! putchar(c ^ 100);
i++;
}
fclose(fp);
--- 471,477 ----
else if (isprint(c) || isspace(c))
putchar(c);
else
! putchar(c ^ 0100);
i++;
}
fclose(fp);
***************
*** 1218,1224 ****
if (isprint(c) || isspace(c))
putchar(c);
else
! putchar(c ^ 100);
}
if (lastc != '\n')
putchar('\n');
--- 1218,1224 ----
if (isprint(c) || isspace(c))
putchar(c);
else
! putchar(c ^ 0100);
}
if (lastc != '\n')
putchar('\n');