This patch, put together by Manuel Novoa III, is a merge of work

done by Evin Robertson (bug#1105) and work from Manuel to make
usage messages occupy less space and simplify how usage messages
are displayed.
This commit is contained in:
Eric Andersen
2001-02-14 21:23:06 +00:00
parent 68be2ab914
commit 67991cf824
198 changed files with 702 additions and 3979 deletions

View File

@ -95,14 +95,14 @@ int rdate_main(int argc, char **argv)
/* Interpret command line args */
/* do special-case option parsing */
if (argv[1] && (strcmp(argv[1], "--help") == 0))
usage(rdate_usage);
show_usage();
/* do normal option parsing */
while ((opt = getopt(argc, argv, "Hsp")) > 0) {
switch (opt) {
default:
case 'H':
usage(rdate_usage);
show_usage();
break;
case 's':
setdate++;
@ -117,7 +117,7 @@ int rdate_main(int argc, char **argv)
if (printdate==0 && setdate==0) setdate++;
if (optind == argc) {
usage(rdate_usage);
show_usage();
}
if ((time= askremotedate(argv[optind])) == (time_t)-1) {