caf@omen.UUCP (Chuck Forsberg WA7KGX) (07/22/86)
John Carey has discovered a coding error in rz.c. I'm not too surprised
rz worked with the wrong code, since the protocol is rather robust with
respect to extraneous messages between frames.
-------------------------- Cut Here 8< ----------------------------------------
/*
* Local console output simulation
*/
bttyout(c)
{
#ifdef PATCH
if (Verbose || fromcu())
#else
if (Verbose || fromcu)
#endif
putc(c, stderr);
}
-------------------------- Cut Here 8< ----------------------------------------