Corrected apparent omission in program logic which was causing the

insertion of redundant crlf's.  Eliminated the venetian-blind effect
in walled text.

Submitted by:	David McNett <nugget@slacker.com>
This commit is contained in:
Daniel Baker 1999-09-01 22:21:24 +00:00
parent 2e771e0387
commit b4d6ab014c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=50772

View File

@ -217,8 +217,9 @@ makemsg(fname)
cnt = 0;
}
}
} else {
putc(ch, fp);
}
putc(ch, fp);
}
(void)fprintf(fp, "%79s\r\n", " ");
rewind(fp);