diff options
author | jkh <jkh@FreeBSD.org> | 1998-10-13 10:07:43 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1998-10-13 10:07:43 +0000 |
commit | 72bb4a07e1421d05276a5a6bd671ca7a008d8fda (patch) | |
tree | eb55c7c5d0909dbf6415cc66533bc5ad423239a2 /usr.sbin/sade | |
parent | 54b4310518b426534edcc9a4a3ad9026489396fc (diff) | |
download | FreeBSD-src-72bb4a07e1421d05276a5a6bd671ca7a008d8fda.zip FreeBSD-src-72bb4a07e1421d05276a5a6bd671ca7a008d8fda.tar.gz |
fix brainos in earlier commit.
Diffstat (limited to 'usr.sbin/sade')
-rw-r--r-- | usr.sbin/sade/install.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/sade/install.c b/usr.sbin/sade/install.c index 2332ddf..c2709b1 100644 --- a/usr.sbin/sade/install.c +++ b/usr.sbin/sade/install.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: install.c,v 1.214 1998/10/12 23:45:06 jkh Exp $ + * $Id: install.c,v 1.215 1998/10/12 23:47:50 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -354,16 +354,16 @@ installFixitFloppy(dialogMenuItem *self) while (1) { msgConfirm("Please insert a writable fixit floppy and press return"); mediaDevice->private = "/mnt2"; - if (!mediaDevice->init(&mediaDevice)) { + if (!mediaDevice->init(mediaDevice)) { if (msgYesNo("The attempt to mount the fixit floppy failed, bad floppy\n" - "or unclean filesystem. Do you want to try again?") + "or unclean filesystem. Do you want to try again?")) return DITEM_FAILURE; } } if (!directory_exists("/tmp")) (void)symlink("/mnt2/tmp", "/tmp"); fixit_common(); - mediaDevice->shutdown(&mediaDevice); + mediaDevice->shutdown(mediaDevice); mediaDevice = NULL; msgConfirm("Please remove the fixit floppy now."); return DITEM_SUCCESS; |