diff options
Diffstat (limited to 'perl-install')
-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; |