More init fixes. Fixed sync segfault.

-Erik
This commit is contained in:
Eric Andersen
1999-11-03 16:52:50 +00:00
parent 219d6f5e0c
commit be971d6b69
9 changed files with 45 additions and 48 deletions

View File

@@ -37,8 +37,8 @@
static const char tar_usage[] =
"Create, extract, or list files from a TAR file\n\n"
"usage: tar -[cxtvOf] [tarFileName] [FILE] ...\n"
"tar -[cxtvOf] [tarFileName] [FILE] ...\n"
"Create, extract, or list files from a tar file\n\n"
"\tc=create, x=extract, t=list contents, v=verbose,\n"
"\tO=extract to stdout, f=tarfile or \"-\" for stdin\n";
@@ -151,10 +151,8 @@ extern int tar_main (int argc, char **argv)
argc--;
argv++;
if (argc < 1) {
fprintf (stderr, "%s", tar_usage);
exit (FALSE);
}
if (argc < 1)
usage( tar_usage);
errorFlag = FALSE;