done a dozen of randconfig test. guess what? ALL failed...

these are resulting fixes
This commit is contained in:
Denis Vlasenko
2006-12-30 17:57:03 +00:00
parent b5a122b6f9
commit 3bba545a54
11 changed files with 71 additions and 43 deletions

View File

@ -1122,7 +1122,7 @@ static ulg deflate(void)
* in the compressed file.
*/
/* configuration */
/* configuration */
typedef struct dirent dir_type;
@ -1156,11 +1156,13 @@ int gzip_main(int argc, char **argv)
//if (opt & 0x400) // -9
//if (opt & 0x800) // -q
//if (opt & 0x1000) // -v
if (ENABLE_GUNZIP && (opt & 0x2000)) { // -d
#if ENABLE_GUNZIP /* gunzip_main may not be visible... */
if (opt & 0x2000) { // -d
/* FIXME: getopt32 should not depend on optind */
optind = 1;
return gunzip_main(argc, argv);
}
#endif
foreground = signal(SIGINT, SIG_IGN) != SIG_IGN;
if (foreground) {