Skip to content

Commit

Permalink
Sort usernames when enumerating plans. Makes it easier to find what y…
Browse files Browse the repository at this point in the history
…ou need

 in the debug output.
  • Loading branch information
icculus committed Jun 3, 2006
1 parent 5c6a34e commit 0589315
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IcculusFinger_archiveplans.pl
Expand Up @@ -128,7 +128,7 @@ sub run_external_updater {
sub enumerate_planfiles {
my $dirname = (($use_homedir) ? '/home' : $fingerspace);
opendir(DIRH, $dirname) or return(undef);
my @dirents = readdir(DIRH);
my @dirents = sort readdir(DIRH);
closedir(DIRH);

my @retval;
Expand Down

0 comments on commit 0589315

Please sign in to comment.