diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-04-03 03:21:08 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-04-03 03:21:08 +0000 |
commit | 40c32e3cf8cc20d9d3a582de5685efc525ae67f7 (patch) | |
tree | 2c024e24bac4a9b8e4af25c4fb0abe63ca8157c6 /perl-install/standalone | |
parent | 5a3fc63c8ef1c21975d1129c2827ebb8094c1526 (diff) | |
download | drakx-40c32e3cf8cc20d9d3a582de5685efc525ae67f7.tar drakx-40c32e3cf8cc20d9d3a582de5685efc525ae67f7.tar.gz drakx-40c32e3cf8cc20d9d3a582de5685efc525ae67f7.tar.bz2 drakx-40c32e3cf8cc20d9d3a582de5685efc525ae67f7.tar.xz drakx-40c32e3cf8cc20d9d3a582de5685efc525ae67f7.zip |
- drakboot:
o stop workarounding glibc misconfiguration when listing users
(#38116), it is now handled in MDK::Common (see #34279)
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-x | perl-install/standalone/drakboot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot index d0a8ef826..d00008ff1 100755 --- a/perl-install/standalone/drakboot +++ b/perl-install/standalone/drakboot @@ -171,7 +171,7 @@ sub splash_choice() { } sub autologin_choice() { - my @users = uniq(sort(list_users())); + my @users = sort(list_users()); my @sessions = sort(split(' ', `/usr/sbin/chksession -l`)); my $x_mode = Xconfig::various::runlevel() == 5; |