From 7db2fbed01716e72509a619d9dd8640fcebcb34a Mon Sep 17 00:00:00 2001 From: dms Date: Fri, 9 Feb 2001 13:44:45 +0000 Subject: [PATCH] we did a sort() when we should not have for '.sched' git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk@372 c11ca15a-4712-0410-83d8-924469b57eb5 --- blootbot/src/Modules/UserDCC.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/blootbot/src/Modules/UserDCC.pl b/blootbot/src/Modules/UserDCC.pl index 9343338..2960e29 100644 --- a/blootbot/src/Modules/UserDCC.pl +++ b/blootbot/src/Modules/UserDCC.pl @@ -1218,10 +1218,11 @@ sub userDCC { my @time; foreach (sort { $a <=> $b } keys %time) { my $str = join(", ", sort keys %{ $time{$_} }); + &DEBUG("time => $_, str => $str"); push(@time, "$str (".&Time2String($_).")"); } - &pSReply( &formListReply(0, "Schedulers: ", sort @time ) ); + &pSReply( &formListReply(0, "Schedulers: ", @time ) ); &pSReply( &formListReply(0, "Scheds to run: ", sort @list ) ); &pSReply( &formListReply(0, "Scheds running(should not happen?) ", sort @run ) ); -- 2.39.5