Skip to content

Commit

Permalink
- sort arrays so the test output is deterministic
Browse files Browse the repository at this point in the history
- 2.24.1
  • Loading branch information
jsuchome committed Jul 1, 2013
1 parent cebe9b2 commit a08f3c6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.24.0
2.24.1
6 changes: 6 additions & 0 deletions package/yast2-samba-server.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Mon Jul 1 09:00:06 CEST 2013 - jsuchome@suse.cz

- sort arrays so the test output is deterministic
- 2.24.1

-------------------------------------------------------------------
Fri Apr 19 10:50:57 CEST 2013 - jsuchome@suse.cz

Expand Down
2 changes: 1 addition & 1 deletion src/YaPI/Samba.pm
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,7 @@ sub GetAllDirectories {
my @res;

# filter out the printers
foreach my $key (@$shares) {
foreach my $key (sort @$shares) {
push @res, $key unless SambaConfig->ShareGetTruth($key, "printable", 0);
}

Expand Down

0 comments on commit a08f3c6

Please sign in to comment.