From: Tobias Stoeckmann Date: Tue, 20 Jan 2026 16:34:37 +0000 (+0100) Subject: lib/pager: Fix typos X-Git-Tag: v2.43-devel~136^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=008bbf43d30092b457bddf3e070c01ee03cd9e86;p=thirdparty%2Futil-linux.git lib/pager: Fix typos Signed-off-by: Tobias Stoeckmann --- diff --git a/lib/pager.c b/lib/pager.c index 5cafc1e08..9cbf6383f 100644 --- a/lib/pager.c +++ b/lib/pager.c @@ -209,7 +209,7 @@ static void __setup_pager(void) sigaction(SIGPIPE, &sa, &pager_process.orig_sigpipe); } -/* Setup pager and redirects output to the $PAGER. The pager is closed at exit. +/* Setup pager and redirect output to the $PAGER. The pager is closed at exit. */ void pager_redirect(void) { @@ -250,7 +250,7 @@ void pager_close(void) close(pager_process.org_out); close(pager_process.org_err); - /* restore original segnals setting */ + /* restore original signal settings */ sigaction(SIGINT, &pager_process.orig_sigint, NULL); sigaction(SIGHUP, &pager_process.orig_sighup, NULL); sigaction(SIGTERM, &pager_process.orig_sigterm, NULL);