From 7d5de438255f7571906a798bb6a3de80bd4c09d9 Mon Sep 17 00:00:00 2001 From: Ron Yorston Date: Wed, 9 Feb 2022 11:24:33 +0000 Subject: Fix POSIX build; new year --- coreutils/timeout.c | 3 ++- libbb/appletlib.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/coreutils/timeout.c b/coreutils/timeout.c index 74df31d10..c8171ec54 100644 --- a/coreutils/timeout.c +++ b/coreutils/timeout.c @@ -42,7 +42,8 @@ //usage: "[-s SIG] [-k KILL_SECS] SECS PROG ARGS" //usage:#define timeout_full_usage "\n\n" //usage: "Run PROG. Send SIG to it if it is not gone in SECS seconds.\n" -//usage: "Default SIG: TERM.\n" +//usage: IF_NOT_PLATFORM_MINGW32("Default SIG: TERM.") +//usage: IF_PLATFORM_MINGW32("Default SIG: TERM.\n") //usage: "If it still exists in KILL_SECS seconds, send KILL.\n" #include "libbb.h" diff --git a/libbb/appletlib.c b/libbb/appletlib.c index a8b82e729..4a4699c68 100644 --- a/libbb/appletlib.c +++ b/libbb/appletlib.c @@ -831,7 +831,7 @@ int busybox_main(int argc UNUSED_PARAM, char **argv) } #endif full_write2_str( - "BusyBox is copyrighted by many authors between 1998-2021.\n" + "BusyBox is copyrighted by many authors between 1998-2022.\n" "Licensed under GPLv2. See source distribution for detailed\n" "copyright notices.\n" "\n" -- cgit v1.2.3-55-g6feb