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 | |
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)
-rw-r--r-- | perl-install/NEWS | 3 | ||||
-rwxr-xr-x | perl-install/standalone/drakboot | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 7c4460900..5873bbb77 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +- drakboot: + o stop workarounding glibc misconfiguration when listing users + (#38116), it is now handled in MDK::Common (see #34279) - draksplash: o do not write decimal values in theme config (#38271) 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; |