diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1995-05-26 10:34:44 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1995-05-26 10:34:44 +0000 |
| commit | f284246288162c79dd8aba8e5c6a154015d099c8 (patch) | |
| tree | 63d0f2e96444fb01d498d4a203099fdd50ac9550 | |
| parent | ad98a5f52b0042d0fd933c4e057577eaac16e8da (diff) | |
Notes
| -rw-r--r-- | release/sysinstall/dist.c | 4 | ||||
| -rw-r--r-- | usr.sbin/sysinstall/dist.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/release/sysinstall/dist.c b/release/sysinstall/dist.c index 2c0728632e9af..08b120ba07605 100644 --- a/release/sysinstall/dist.c +++ b/release/sysinstall/dist.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: dist.c,v 1.21 1995/05/26 08:41:39 jkh Exp $ + * $Id: dist.c,v 1.22 1995/05/26 10:20:44 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -236,7 +236,7 @@ distExtract(char *parent, Distribution *me) char dparent[FILENAME_MAX]; snprintf(dparent, FILENAME_MAX, "%s/", parent ? parent : me[i].my_name); - fd = (*mediaDevice->get)(dparent, me[i].my_name); + fd = (*mediaDevice->get)(me[i].my_name, dparent); if (fd != -1) { status = mediaExtractDist(me[i].my_name, me[i].my_dir, fd); if (mediaDevice->close) diff --git a/usr.sbin/sysinstall/dist.c b/usr.sbin/sysinstall/dist.c index 2c0728632e9af..08b120ba07605 100644 --- a/usr.sbin/sysinstall/dist.c +++ b/usr.sbin/sysinstall/dist.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: dist.c,v 1.21 1995/05/26 08:41:39 jkh Exp $ + * $Id: dist.c,v 1.22 1995/05/26 10:20:44 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -236,7 +236,7 @@ distExtract(char *parent, Distribution *me) char dparent[FILENAME_MAX]; snprintf(dparent, FILENAME_MAX, "%s/", parent ? parent : me[i].my_name); - fd = (*mediaDevice->get)(dparent, me[i].my_name); + fd = (*mediaDevice->get)(me[i].my_name, dparent); if (fd != -1) { status = mediaExtractDist(me[i].my_name, me[i].my_dir, fd); if (mediaDevice->close) |
