aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-02-17 13:46:00 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-02-17 13:46:00 +0000
commite0c0b2ba7da94b3972d734a733156e92b856d794 (patch)
treec49d5af91d8f7905d6648515e1eb566651d47b5a /src
parentdebbcf81bb812b3170dc393296663bf9fac182e3 (diff)
fix the help text for --manual if built without manual
Diffstat (limited to 'src')
-rw-r--r--src/main.c10
1 files changed, 7 insertions, 3 deletions
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':