aboutsummaryrefslogtreecommitdiff
path: root/release/sysinstall/label.c
diff options
context:
space:
mode:
Diffstat (limited to 'release/sysinstall/label.c')
-rw-r--r--release/sysinstall/label.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/release/sysinstall/label.c b/release/sysinstall/label.c
index 4085b3b91160..4580c2047c40 100644
--- a/release/sysinstall/label.c
+++ b/release/sysinstall/label.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: label.c,v 1.36 1996/03/02 20:00:50 jkh Exp $
+ * $Id: label.c,v 1.37 1996/03/02 20:02:13 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -169,8 +169,10 @@ diskLabelCommit(char *str)
int i;
/* Already done? */
- if ((cp = variable_get(DISK_LABELLED)) && strcmp(cp, "yes"))
+ if ((cp = variable_get(DISK_LABELLED)) && strcmp(cp, "yes")) {
+ variable_set2(DISK_PARTITIONED, "yes");
i = RET_SUCCESS;
+ }
else if (!cp) {
dialog_clear();
msgConfirm("You must assign disk labels before this option can be used.");