diff options
author | Jeremy Katz <katzj@redhat.com> | 2007-01-18 18:41:07 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2007-01-18 18:41:07 +0000 |
commit | 37c14deefde19857625013aaf71cfef0c2d6ee13 (patch) | |
tree | aec861ea15163fb4f05d029b04f446350093b028 /loader2/method.c | |
parent | dcdccb7dde84aa2c14763b81081fefc5b46f6d3f (diff) | |
download | anaconda-37c14deefde19857625013aaf71cfef0c2d6ee13.tar.gz anaconda-37c14deefde19857625013aaf71cfef0c2d6ee13.tar.xz anaconda-37c14deefde19857625013aaf71cfef0c2d6ee13.zip |
2007-01-18 Jeremy Katz <katzj@redhat.com>
* loader2/method.c (unpackCpioBall): Fix the build
Diffstat (limited to 'loader2/method.c')
-rw-r--r-- | loader2/method.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loader2/method.c b/loader2/method.c index ebb92e71f..5eb6179f1 100644 --- a/loader2/method.c +++ b/loader2/method.c @@ -530,7 +530,7 @@ int unpackCpioBall(char * ballPath, char * rootDir) { buf = (char *)malloc(PATH_MAX); cwd = getcwd(buf, PATH_MAX); if ((rc = chdir(rootDir)) == 0) { - fd = gunzip_open(path); + fd = gunzip_open(ballPath); if (fd) { if (!installCpioFile(fd, NULL, NULL, 0)) { logMessage(INFO, "copied contents of %s into %s", ballPath, |