Get rid of long stale usage message code.

-Erik
This commit is contained in:
Eric Andersen
2001-02-17 16:52:35 +00:00
parent 3d20f772c2
commit b50da53e0c
4 changed files with 12 additions and 20 deletions

9
df.c
View File

@@ -85,7 +85,7 @@ extern int df_main(int argc, char **argv)
int opt = 0;
int i = 0;
while ((opt = getopt(argc, argv, "?"
while ((opt = getopt(argc, argv,
#ifdef BB_FEATURE_HUMAN_READABLE
"hm"
#endif
@@ -100,7 +100,8 @@ extern int df_main(int argc, char **argv)
#else
case 'k': break;
#endif
case '?': goto print_df_usage; break;
default:
show_usage();
}
}
@@ -141,10 +142,6 @@ extern int df_main(int argc, char **argv)
}
return status;
print_df_usage:
show_usage();
return(FALSE);
}
/*