diff options
author | jkh <jkh@FreeBSD.org> | 1996-10-02 00:41:40 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1996-10-02 00:41:40 +0000 |
commit | 919bb2c57c41e2070fc18498e3bed4c350f13ee4 (patch) | |
tree | 32728788f2e92d2ccd4cb38c1a5de6dcb4348ae8 /usr.sbin/sysinstall/media.c | |
parent | 6198e0ee81fbdc54f6a3e81b09093607edd68a0c (diff) | |
download | FreeBSD-src-919bb2c57c41e2070fc18498e3bed4c350f13ee4.zip FreeBSD-src-919bb2c57c41e2070fc18498e3bed4c350f13ee4.tar.gz |
Make FTP site reselection work the way it always should have.
Diffstat (limited to 'usr.sbin/sysinstall/media.c')
-rw-r--r-- | usr.sbin/sysinstall/media.c | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/usr.sbin/sysinstall/media.c b/usr.sbin/sysinstall/media.c index d5faae3..580f3b4 100644 --- a/usr.sbin/sysinstall/media.c +++ b/usr.sbin/sysinstall/media.c @@ -4,7 +4,7 @@ * This is probably the last attempt in the `sysinstall' line, the next * generation being slated to essentially a complete rewrite. * - * $Id: media.c,v 1.54 1996/10/01 12:13:19 jkh Exp $ + * $Id: media.c,v 1.55 1996/10/01 14:08:28 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -270,23 +270,6 @@ mediaSetFTP(dialogMenuItem *self) cp = variable_get(VAR_FTP_PATH); what = DITEM_RECREATE; } - else { - static int first_time = 1; - - if (first_time) - first_time = 0; - else { - dialog_clear_norefresh(); - if (msgYesNo("Do you want to use your old FTP path value of\n%s?", cp)) { - dialog_clear_norefresh(); - if (!dmenuOpenSimple(&MenuMediaFTP, FALSE)) - return DITEM_FAILURE | DITEM_RECREATE; - else - cp = variable_get(VAR_FTP_PATH); - what = DITEM_RECREATE; - } - } - } if (!cp) return DITEM_FAILURE | what; else if (!strcmp(cp, "other")) { |