From b4d6ab014c299607bf46be6959adda528a702a26 Mon Sep 17 00:00:00 2001 From: Daniel Baker Date: Wed, 1 Sep 1999 22:21:24 +0000 Subject: [PATCH] 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 --- usr.bin/wall/wall.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/usr.bin/wall/wall.c b/usr.bin/wall/wall.c index 448f7a94355..c853e1c40da 100644 --- a/usr.bin/wall/wall.c +++ b/usr.bin/wall/wall.c @@ -217,8 +217,9 @@ makemsg(fname) cnt = 0; } } + } else { + putc(ch, fp); } - putc(ch, fp); } (void)fprintf(fp, "%79s\r\n", " "); rewind(fp);