summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--release/sysinstall/media.c4
-rw-r--r--release/sysinstall/sysinstall.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/release/sysinstall/media.c b/release/sysinstall/media.c
index 92aabd300a67..dc2c75326d45 100644
--- a/release/sysinstall/media.c
+++ b/release/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.25.2.16 1995/10/20 16:49:47 jkh Exp $
+ * $Id: media.c,v 1.25.2.17 1995/10/21 14:06:51 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -532,7 +532,7 @@ mediaSetFtpOnError(char *str)
else {
if (!strcmp(cp, "abort"))
variable_set2(OPT_FTP_ONERROR, "retry");
- else if (!strcmp(cp, "medium"))
+ else if (!strcmp(cp, "retry"))
variable_set2(OPT_FTP_ONERROR, "reselect");
else /* must be "reselect" - wrap around */
variable_set2(OPT_FTP_ONERROR, "abort");
diff --git a/release/sysinstall/sysinstall.h b/release/sysinstall/sysinstall.h
index 36311ce1e214..1bb518896e90 100644
--- a/release/sysinstall/sysinstall.h
+++ b/release/sysinstall/sysinstall.h
@@ -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: sysinstall.h,v 1.42.2.27 1995/10/20 15:40:49 jkh Exp $
+ * $Id: sysinstall.h,v 1.42.2.28 1995/10/21 14:07:02 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -241,7 +241,7 @@ typedef struct _part_info {
typedef struct _opt {
char *name;
char *desc;
- enum { OPT_IS_STRING, OPT_IS_INT, OPT_IS_FLAG, OPT_IS_FUNC, OPT_IS_VAR } type;
+ enum { OPT_IS_STRING, OPT_IS_INT, OPT_IS_FUNC, OPT_IS_VAR } type;
void *data;
void *aux;
char *(*check)();