Hello community,

here is the log from the commit of package util-linux for openSUSE:Factory 
checked in at 2013-11-05 13:53:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/util-linux (Old)
 and      /work/SRC/openSUSE:Factory/.util-linux.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "util-linux"

Changes:
--------
--- /work/SRC/openSUSE:Factory/util-linux/util-linux.changes    2013-10-30 
16:01:10.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.util-linux.new/util-linux.changes       
2013-11-05 13:53:53.000000000 +0100
@@ -1,0 +2,6 @@
+Sun Nov  3 12:53:34 UTC 2013 - [email protected]
+
+- blkdiscard-BLKSSZGET-fills-in-an-int.patch: Fix type mismatch in
+  blkdiscard
+
+-------------------------------------------------------------------

New:
----
  blkdiscard-BLKSSZGET-fills-in-an-int.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ util-linux.spec ++++++
--- /var/tmp/diff_new_pack.uI2F1x/_old  2013-11-05 13:53:54.000000000 +0100
+++ /var/tmp/diff_new_pack.uI2F1x/_new  2013-11-05 13:53:54.000000000 +0100
@@ -108,6 +108,8 @@
 Patch8:         more-guarantee-space-for-multibyte.patch
 # disable encryption
 Patch12:        util-linux-2.23.1-noenc-suse.diff
+# PATCH-FIX-UPSTREAM blkdiscard-BLKSSZGET-fills-in-an-int.patch [email protected]
+Patch13:        blkdiscard-BLKSSZGET-fills-in-an-int.patch
 
 # hack for boot.localfs
 Patch20:        util-linux-HACK-boot.localfs.diff
@@ -229,6 +231,7 @@
 %patch7 -p1
 %patch8 -p1
 %patch12 -p1
+%patch13 -p1
 #
 %patch20 -p1
 #

++++++ blkdiscard-BLKSSZGET-fills-in-an-int.patch ++++++
Subject: [PATCH] blkdiscard: BLKSSZGET fills in an int, not a uint64
Message-ID: [email protected]

Reported-by: Jason Cipriani <[email protected]>
Signed-off-by: "Theodore Ts'o" <[email protected]>
---
 sys-utils/blkdiscard.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-utils/blkdiscard.c b/sys-utils/blkdiscard.c
index af9ed66..2ddcdb1 100644
--- a/sys-utils/blkdiscard.c
+++ b/sys-utils/blkdiscard.c
@@ -70,8 +70,8 @@ static void __attribute__((__noreturn__)) usage(FILE *out)
 int main(int argc, char **argv)
 {
        char *path;
-       int c, fd, verbose = 0, secure = 0;
-       uint64_t end, blksize, secsize, range[2];
+       int c, fd, verbose = 0, secure = 0, secsize;
+       uint64_t end, blksize, range[2];
        struct stat sb;
 
        static const struct option longopts[] = {
-- 
1.7.12.rc0.22.gcdd159b


-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to