Run through indent, use braces

This commit is contained in:
Glenn L McGrath 2002-08-24 10:30:36 +00:00
parent 933d10d308
commit 1ee52e8b14

View File

@ -82,9 +82,9 @@ static int gunzip_file (const char *path, int flags)
in_file = stdin;
flags |= gunzip_to_stdout;
} else {
if ((in_file = wfopen(path, "r")) == NULL)
if ((in_file = wfopen(path, "r")) == NULL) {
return -1;
}
if (flags & gunzip_verbose) {
fprintf(stderr, "%s:\t", path);
}
@ -99,8 +99,10 @@ static int gunzip_file (const char *path, int flags)
}
/* Check that the input is sane. */
if (isatty(fileno(in_file)) && (flags & gunzip_force) == 0)
error_msg_and_die("compressed data not read from terminal. Use -f to force it.");
if (isatty(fileno(in_file)) && (flags & gunzip_force) == 0) {
error_msg_and_die
("compressed data not read from terminal. Use -f to force it.");
}
/* Set output filename and number */
if (flags & gunzip_test) {
@ -131,8 +133,9 @@ static int gunzip_file (const char *path, int flags)
/* do the decompression, and cleanup */
if (unzip(in_file, out_file) == 0) {
/* Success, remove .gz file */
if ( !(flags & gunzip_to_stdout ))
if (!(flags & gunzip_to_stdout)) {
delete_path = path;
}
if (flags & gunzip_verbose) {
fprintf(stderr, "OK\n");
}
@ -141,10 +144,12 @@ static int gunzip_file (const char *path, int flags)
delete_path = out_path;
}
if (out_file != stdout)
if (out_file != stdout) {
fclose(out_file);
if (in_file != stdin)
}
if (in_file != stdin) {
fclose(in_file);
}
if (delete_path && !(flags & gunzip_test)) {
if (unlink(delete_path) < 0) {
@ -164,8 +169,9 @@ extern int gunzip_main(int argc, char **argv)
int status = EXIT_SUCCESS;
/* if called as zcat */
if (strcmp(applet_name, "zcat") == 0)
if (strcmp(applet_name, "zcat") == 0) {
flags |= gunzip_to_stdout;
}
while ((opt = getopt(argc, argv, "ctfhdqv")) != -1) {
switch (opt) {
@ -193,13 +199,15 @@ extern int gunzip_main(int argc, char **argv)
}
if (optind == argc) {
if (gunzip_file (NULL, flags) < 0)
if (gunzip_file(NULL, flags) < 0) {
status = EXIT_FAILURE;
}
} else {
for (i = optind; i < argc; i++) {
if (gunzip_file (argv[i], flags) < 0)
if (gunzip_file(argv[i], flags) < 0) {
status = EXIT_FAILURE;
}
}
}
return status;
}