summaryrefslogtreecommitdiffstats
path: root/mdk-stage1
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2001-08-24 16:48:54 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2001-08-24 16:48:54 +0000
commit6f2485713a125b8b73b79606e3de62de4ad2eab7 (patch)
tree2c38d461910bfa24d591ab89e73b6c8078a742dc /mdk-stage1
parente1058a9d984b4e5ef38cc16628df412c5ec77dbc (diff)
downloaddrakx-backup-do-not-use-6f2485713a125b8b73b79606e3de62de4ad2eab7.tar
drakx-backup-do-not-use-6f2485713a125b8b73b79606e3de62de4ad2eab7.tar.gz
drakx-backup-do-not-use-6f2485713a125b8b73b79606e3de62de4ad2eab7.tar.bz2
drakx-backup-do-not-use-6f2485713a125b8b73b79606e3de62de4ad2eab7.tar.xz
drakx-backup-do-not-use-6f2485713a125b8b73b79606e3de62de4ad2eab7.zip
revert my auto->interactive patch
Diffstat (limited to 'mdk-stage1')
-rw-r--r--mdk-stage1/automatic.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/mdk-stage1/automatic.c b/mdk-stage1/automatic.c
index edb478ca6..486a829de 100644
--- a/mdk-stage1/automatic.c
+++ b/mdk-stage1/automatic.c
@@ -135,8 +135,7 @@ enum return_type ask_from_entries_auto(char *msg, char ** questions, char *** an
char * tmp_answers[50];
int i = 0;
while (questions && *questions) {
- if (streq(tmp_answers[i] = get_auto_value(*questions_auto), ""))
- return ask_from_entries(msg, questions, answers, entry_size, callback_func);
+ tmp_answers[i] = get_auto_value(*questions_auto);
log_message("AUTOMATIC: question %s answers %s because of param %s", *questions, tmp_answers[i], *questions_auto);
i++;
questions++;