mirror of
git://slackware.nl/current.git
synced 2025-01-15 15:41:54 +01:00
24 lines
658 B
Diff
24 lines
658 B
Diff
|
From f86bbf07ca85640c886dacc4fba159570ddc1b4d Mon Sep 17 00:00:00 2001
|
||
|
From: Karel Zak <kzak@redhat.com>
|
||
|
Date: Thu, 21 Mar 2024 11:16:20 +0100
|
||
|
Subject: [PATCH] wall: consolidate output on the terminal
|
||
|
|
||
|
Let's use for all cases the same output function.
|
||
|
|
||
|
Signed-off-by: Karel Zak <kzak@redhat.com>
|
||
|
---
|
||
|
term-utils/wall.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
--- a/term-utils/wall.c
|
||
|
+++ b/term-utils/wall.c
|
||
|
@@ -328,7 +328,7 @@ static char *makemsg(char *fname, char *
|
||
|
int i;
|
||
|
|
||
|
for (i = 0; i < mvecsz; i++) {
|
||
|
- fputs(mvec[i], fs);
|
||
|
+ fputs_careful(mvec[i], fs, '^', true, TERM_WIDTH);
|
||
|
if (i < mvecsz - 1)
|
||
|
fputc(' ', fs);
|
||
|
}
|