summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sysinstall/media.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1996-10-01 14:08:28 +0000
committerjkh <jkh@FreeBSD.org>1996-10-01 14:08:28 +0000
commit08e7912c56386779151ce28f0aca075409a956aa (patch)
treee58079afae747f43f75392391f14849b808292d8 /usr.sbin/sysinstall/media.c
parent07ab06ed704cd474140777b0f3b698d137ece856 (diff)
downloadFreeBSD-src-08e7912c56386779151ce28f0aca075409a956aa.zip
FreeBSD-src-08e7912c56386779151ce28f0aca075409a956aa.tar.gz
Round 2.5
Diffstat (limited to 'usr.sbin/sysinstall/media.c')
-rw-r--r--usr.sbin/sysinstall/media.c28
1 files changed, 20 insertions, 8 deletions
diff --git a/usr.sbin/sysinstall/media.c b/usr.sbin/sysinstall/media.c
index f735678..d5faae3 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.53 1996/09/26 22:07:32 pst Exp $
+ * $Id: media.c,v 1.54 1996/10/01 12:13:19 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -259,7 +259,7 @@ mediaSetFTP(dialogMenuItem *self)
static Device ftpDevice;
char *cp, *hostname, *dir;
extern int FtpPort;
- int what;
+ int what = DITEM_RESTORE;
cp = variable_get(VAR_FTP_PATH);
if (!cp) {
@@ -270,13 +270,25 @@ mediaSetFTP(dialogMenuItem *self)
cp = variable_get(VAR_FTP_PATH);
what = DITEM_RECREATE;
}
- else
- what = DITEM_RESTORE;
- if (!cp) {
- dialog_clear_norefresh();
- msgConfirm("%s not set! Not setting an FTP installation path, OK?", VAR_FTP_PATH);
- return DITEM_FAILURE | what;
+ 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")) {
variable_set2(VAR_FTP_PATH, "ftp://");
dialog_clear_norefresh();
OpenPOWER on IntegriCloud