aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2024-10-02 14:56:04 +0100
committerRon Yorston <rmy@pobox.com>2024-10-02 14:56:04 +0100
commit4c095ae6efd1fa8773a58fb4a1dc79f5810b2369 (patch)
tree7ea5c91f5a300a72d9def036e7ed979049bc8bd9
parent4be93f32f5bd5ccaac343b4d03fb861a02d6de96 (diff)
downloadbusybox-w32-4c095ae6efd1fa8773a58fb4a1dc79f5810b2369.tar.gz
busybox-w32-4c095ae6efd1fa8773a58fb4a1dc79f5810b2369.tar.bz2
busybox-w32-4c095ae6efd1fa8773a58fb4a1dc79f5810b2369.zip
win32: adjust usage for timeout and pipe_progress
Reduce the divergence from upstream in the usage messages for timeout and pipe_progress. This only affects the source; there are no visible of functional changes.
-rw-r--r--coreutils/timeout.c4
-rw-r--r--debianutils/pipe_progress.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/timeout.c b/coreutils/timeout.c
index 764927a12..58f96192b 100644
--- a/coreutils/timeout.c
+++ b/coreutils/timeout.c
@@ -42,8 +42,8 @@
42//usage: "[-s SIG] [-k KILL_SECS] SECS PROG ARGS" 42//usage: "[-s SIG] [-k KILL_SECS] SECS PROG ARGS"
43//usage:#define timeout_full_usage "\n\n" 43//usage:#define timeout_full_usage "\n\n"
44//usage: "Run PROG. Send SIG to it if it is not gone in SECS seconds.\n" 44//usage: "Run PROG. Send SIG to it if it is not gone in SECS seconds.\n"
45//usage: IF_NOT_PLATFORM_MINGW32("Default SIG: TERM.") 45//usage: "Default SIG: TERM."
46//usage: IF_PLATFORM_MINGW32("Default SIG: TERM.\n") 46//usage: IF_PLATFORM_MINGW32("\n")
47//usage: "If it still exists in KILL_SECS seconds, send KILL.\n" 47//usage: "If it still exists in KILL_SECS seconds, send KILL.\n"
48 48
49#include "libbb.h" 49#include "libbb.h"
diff --git a/debianutils/pipe_progress.c b/debianutils/pipe_progress.c
index 7bdf5c064..850c4d34b 100644
--- a/debianutils/pipe_progress.c
+++ b/debianutils/pipe_progress.c
@@ -18,7 +18,7 @@
18 18
19//usage:#define pipe_progress_trivial_usage IF_PLATFORM_POSIX(NOUSAGE_STR) 19//usage:#define pipe_progress_trivial_usage IF_PLATFORM_POSIX(NOUSAGE_STR)
20//usage: IF_PLATFORM_MINGW32("") 20//usage: IF_PLATFORM_MINGW32("")
21//usage:#define pipe_progress_full_usage IF_PLATFORM_POSIX("") 21//usage:#define pipe_progress_full_usage ""
22//usage: IF_PLATFORM_MINGW32("\n\n") 22//usage: IF_PLATFORM_MINGW32("\n\n")
23//usage: IF_PLATFORM_MINGW32("Display a dot to indicate pipe activity") 23//usage: IF_PLATFORM_MINGW32("Display a dot to indicate pipe activity")
24 24