Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master sorcery by Ismael Luceno (de352b8939cf62ec469c2388625d9715654365e1)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master sorcery by Ismael Luceno (de352b8939cf62ec469c2388625d9715654365e1)
  • Date: Sun, 4 Jan 2015 21:09:33 -0600

GIT changes to master sorcery by Ismael Luceno <ismael AT sourcemage.org>:

var/lib/sorcery/modules/libqueue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit de352b8939cf62ec469c2388625d9715654365e1
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

libqueue: Fix version comparison for the quiet code path

diff --git a/var/lib/sorcery/modules/libqueue
b/var/lib/sorcery/modules/libqueue
index 9d4b407..4a0ad40 100755
--- a/var/lib/sorcery/modules/libqueue
+++ b/var/lib/sorcery/modules/libqueue
@@ -197,7 +197,7 @@ function find_updates() {
print $1, reasons
}
} else {
- if ($2 != factor[2] || $3 < factor[3] || $4 < factor[4] || $5 <
factor[5]) {
+ if (vercmp($2, factor[2]) < 0 || $3 < factor[3] || $4 < factor[4] ||
$5 < factor[5]) {
print $1
}
}



  • [SM-Commit] GIT changes to master sorcery by Ismael Luceno (de352b8939cf62ec469c2388625d9715654365e1), Ismael Luceno, 01/04/2015

Archive powered by MHonArc 2.6.24.

Top of Page