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);
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':