From 1b4a88f1fe7a826e149648a983e437b14f274841 Mon Sep 17 00:00:00 2001 From: Jacob Nevins Date: Sun, 17 Nov 2024 14:22:26 +0000 Subject: [PATCH] pscp: Fix short help message. Typing just 'pscp' for help doesn't work since ecfa6b2734 (and is a particularly infuriating suggestion if that's what you did to elicit this message). --- pscp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pscp.c b/pscp.c index 08e37ceb..e213d1e7 100644 --- a/pscp.c +++ b/pscp.c @@ -2253,7 +2253,7 @@ void cmdline_error(const char *p, ...) va_start(ap, p); vfprintf(stderr, p, ap); va_end(ap); - fprintf(stderr, "\n try typing just \"pscp\" for help\n"); + fprintf(stderr, "\n try typing \"pscp -h\" for help\n"); exit(1); }