From e0c0b2ba7da94b3972d734a733156e92b856d794 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 17 Feb 2004 13:46:00 +0000 Subject: fix the help text for --manual if built without manual --- src/main.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/main.c b/src/main.c index 16c8e5f85..1e3712ed6 100644 --- a/src/main.c +++ b/src/main.c @@ -233,8 +233,11 @@ static void helpf(const char *fmt, ...) vfprintf(stderr, fmt, ap); va_end(ap); } - fprintf(stderr, "curl: try 'curl --help' or " - "'curl --manual' for more information\n"); + fprintf(stderr, "curl: try 'curl --help' " +#ifdef USE_MANUAL + "or 'curl --manual' " +#endif + "for more information\n"); } /* @@ -1714,7 +1717,8 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */ hugehelp(); return PARAM_HELP_REQUESTED; #else - helpf("built-in manual was disabled and build-time!\n"); + fprintf(stderr, + "curl: built-in manual was disabled at build-time!\n"); return PARAM_OPTION_UNKNOWN; #endif case 'n': -- cgit v1.2.3