summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2005-06-16 06:30:10 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2005-06-16 06:30:10 +0000
commite8703f75a266aabb49b0d96e0ba2db65134786c7 (patch)
tree2099a310d81ed757e2aeb4a20e3aca79a4dff44e
parent30eca348495877a00c7a9153b4cf91995f95a73c (diff)
downloaddrakx-backup-do-not-use-e8703f75a266aabb49b0d96e0ba2db65134786c7.tar
drakx-backup-do-not-use-e8703f75a266aabb49b0d96e0ba2db65134786c7.tar.gz
drakx-backup-do-not-use-e8703f75a266aabb49b0d96e0ba2db65134786c7.tar.bz2
drakx-backup-do-not-use-e8703f75a266aabb49b0d96e0ba2db65134786c7.tar.xz
drakx-backup-do-not-use-e8703f75a266aabb49b0d96e0ba2db65134786c7.zip
(install2::configMove) fix infinite loop while adding users
-rw-r--r--globetrotter/move.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/globetrotter/move.pm b/globetrotter/move.pm
index ada90c193..68d9676b5 100644
--- a/globetrotter/move.pm
+++ b/globetrotter/move.pm
@@ -83,7 +83,7 @@ sub install2::configMove {
require install_steps;
install_steps::addUser($o); # for test, when replaying wizard on an already configured machine
- while ($#{$o->{users}} ne -1) {
+ while ($#{$o->{users}} eq -1) {
install_steps::addUser($o);
}