diff options
author | Stew Benedict <stewb@mandriva.org> | 2005-09-25 12:18:13 +0000 |
---|---|---|
committer | Stew Benedict <stewb@mandriva.org> | 2005-09-25 12:18:13 +0000 |
commit | a1c0d1fa4346ef5aae3f31f46da42506ab4b1315 (patch) | |
tree | 073c4c0ff9874eff24f23e8f72ad3a8a4ac942d1 | |
parent | 35753cd2ae43eae3ab619706c3035720e376af94 (diff) | |
download | drakx-backup-do-not-use-topic/MDK-10_1-update.tar drakx-backup-do-not-use-topic/MDK-10_1-update.tar.gz drakx-backup-do-not-use-topic/MDK-10_1-update.tar.bz2 drakx-backup-do-not-use-topic/MDK-10_1-update.tar.xz drakx-backup-do-not-use-topic/MDK-10_1-update.zip |
Fix mis-sorted progress barstopic/MDK-10_1-update
-rwxr-xr-x | perl-install/standalone/drakbackup | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/drakbackup b/perl-install/standalone/drakbackup index b69b39880..defb1dcfa 100755 --- a/perl-install/standalone/drakbackup +++ b/perl-install/standalone/drakbackup @@ -1056,7 +1056,7 @@ sub build_backup_files() { files_to_results("$incr$user"); } } - $interactive and progress($pbar2, $plabel1, 1, N("Backup User files...")); + $interactive and progress($pbar1, $plabel1, 1, N("Backup User files...")); $interactive and progress($pbar3, $plabel3, 0.4, N("Hard Disk Backup files...")); if ($conf{OTHER_FILES}) { @@ -1091,7 +1091,7 @@ sub build_backup_files() { push_list("list_$incr") if $incr =~ /_other/; files_to_results($incr); } - $interactive and progress($pbar1, $plabel2, 1, N("Backup Other files...")); + $interactive and progress($pbar2, $plabel2, 1, N("Backup Other files...")); $interactive and progress($pbar3, $plabel3, 0.3, N("Hard Disk Backup Progress...")); } |