Simplify the main function now that libufs will hunt for the disk for us.

This commit is contained in:
Juli Mallett 2003-01-19 01:02:25 +00:00
parent 656128586d
commit 684d26ea29
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=109507

View File

@ -91,26 +91,20 @@ void usage(void) __dead2;
int
main(int argc, char *argv[])
{
struct fstab *fs;
int ch, eval;
int eval;
while ((ch = getopt(argc, argv, "")) != -1)
switch(ch) {
case '?':
default:
usage();
}
eval = 0;
while (getopt(argc, argv, "") != -1)
usage();
argc -= optind;
argv += optind;
if (argc < 1)
usage();
for (eval = 0; *argv; ++argv)
if ((fs = getfsfile(*argv)) == NULL)
eval |= dumpfs(*argv);
else
eval |= dumpfs(fs->fs_spec);
while (*argv != NULL)
eval |= dumpfs(*argv++);
exit(eval);
}