summaryrefslogtreecommitdiffstats
path: root/isys
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2001-11-13 21:35:37 +0000
committerErik Troan <ewt@redhat.com>2001-11-13 21:35:37 +0000
commit6564288e3bfaaf67cac90d6803c3ea8642cfe8d3 (patch)
tree7705929d6fbe67a0cdf621bf7f4edea30dd316cf /isys
parent44ad7f457f32fdfba608959532540c3a13ac4fca (diff)
downloadanaconda-6564288e3bfaaf67cac90d6803c3ea8642cfe8d3.tar.gz
anaconda-6564288e3bfaaf67cac90d6803c3ea8642cfe8d3.tar.xz
anaconda-6564288e3bfaaf67cac90d6803c3ea8642cfe8d3.zip
use proper gunzip_open call
Diffstat (limited to 'isys')
-rw-r--r--isys/otherinsmod.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/otherinsmod.c b/isys/otherinsmod.c
index 0a33e1ac3..8c5b96823 100644
--- a/isys/otherinsmod.c
+++ b/isys/otherinsmod.c
@@ -54,7 +54,7 @@ int ourInsmodCommand(int argc, char ** argv) {
/* Try two balls on sparc64, one elsewhere */
for (i = 0; ; i++) {
/* it might be having a ball */
- fd = gunzip_open(ballPath, 0);
+ fd = gunzip_open(ballPath);
if (!fd) {
free(ballPath);
return 1;