mirror of
https://github.com/sheumann/hush.git
synced 2024-12-22 14:30:31 +00:00
Remove cruft
This commit is contained in:
parent
9233959940
commit
02cebebc3b
@ -125,13 +125,14 @@ unsigned short mask_bits[] = {
|
||||
//static int error_number = 0;
|
||||
/* ========================================================================
|
||||
* Signal and error handler.
|
||||
*/
|
||||
|
||||
static void abort_gzip()
|
||||
{
|
||||
error_msg("gzip aborted\n");
|
||||
// exit(ERROR);
|
||||
return;
|
||||
}
|
||||
*/
|
||||
|
||||
static void make_crc_table()
|
||||
{
|
||||
@ -432,7 +433,6 @@ static int inflate_codes(huft_t *tl, huft_t *td, int bl, int bd)
|
||||
if (e == 16) { /* then it's a literal */
|
||||
window[w++] = (unsigned char) t->v.n;
|
||||
if (w == WSIZE) {
|
||||
// flush_output(w);
|
||||
outcnt=(w),
|
||||
flush_window();
|
||||
w = 0;
|
||||
|
@ -284,11 +284,9 @@ extern int tar_main(int argc, char **argv)
|
||||
/* unzip tarFd in a seperate process */
|
||||
if (unzipFlag == TRUE) {
|
||||
comp_file = fdopen(tarFd, "r");
|
||||
printf("1\n");
|
||||
if ((tarFd = gz_open(comp_file, &pid)) == EXIT_FAILURE) {
|
||||
error_msg_and_die("Couldnt unzip file");
|
||||
}
|
||||
printf("2\n");
|
||||
}
|
||||
#endif
|
||||
status = readTarFile(tarFd, extractFlag, listFlag, tostdoutFlag,
|
||||
|
4
gunzip.c
4
gunzip.c
@ -125,13 +125,14 @@ unsigned short mask_bits[] = {
|
||||
//static int error_number = 0;
|
||||
/* ========================================================================
|
||||
* Signal and error handler.
|
||||
*/
|
||||
|
||||
static void abort_gzip()
|
||||
{
|
||||
error_msg("gzip aborted\n");
|
||||
// exit(ERROR);
|
||||
return;
|
||||
}
|
||||
*/
|
||||
|
||||
static void make_crc_table()
|
||||
{
|
||||
@ -432,7 +433,6 @@ static int inflate_codes(huft_t *tl, huft_t *td, int bl, int bd)
|
||||
if (e == 16) { /* then it's a literal */
|
||||
window[w++] = (unsigned char) t->v.n;
|
||||
if (w == WSIZE) {
|
||||
// flush_output(w);
|
||||
outcnt=(w),
|
||||
flush_window();
|
||||
w = 0;
|
||||
|
2
tar.c
2
tar.c
@ -284,11 +284,9 @@ extern int tar_main(int argc, char **argv)
|
||||
/* unzip tarFd in a seperate process */
|
||||
if (unzipFlag == TRUE) {
|
||||
comp_file = fdopen(tarFd, "r");
|
||||
printf("1\n");
|
||||
if ((tarFd = gz_open(comp_file, &pid)) == EXIT_FAILURE) {
|
||||
error_msg_and_die("Couldnt unzip file");
|
||||
}
|
||||
printf("2\n");
|
||||
}
|
||||
#endif
|
||||
status = readTarFile(tarFd, extractFlag, listFlag, tostdoutFlag,
|
||||
|
Loading…
Reference in New Issue
Block a user