fix the help text for --manual if built without manual

This commit is contained in:
Daniel Stenberg 2004-02-17 13:46:00 +00:00
parent debbcf81bb
commit e0c0b2ba7d
1 changed files with 7 additions and 3 deletions

View File

@ -233,8 +233,11 @@ static void helpf(const char *fmt, ...)
vfprintf(stderr, fmt, ap); vfprintf(stderr, fmt, ap);
va_end(ap); va_end(ap);
} }
fprintf(stderr, "curl: try 'curl --help' or " fprintf(stderr, "curl: try 'curl --help' "
"'curl --manual' for more information\n"); #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(); hugehelp();
return PARAM_HELP_REQUESTED; return PARAM_HELP_REQUESTED;
#else #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; return PARAM_OPTION_UNKNOWN;
#endif #endif
case 'n': case 'n':