Mailinglist Archive: opensuse-commit (710 mails)

< Previous Next >
commit util-linux for openSUSE:Factory
  • From: root@xxxxxxxxxxxxxxx (h_root)
  • Date: Fri, 14 May 2010 00:13:56 +0200
  • Message-id: <20100513221356.E361E202B5@xxxxxxxxxxxxxxx>

Hello community,

here is the log from the commit of package util-linux for openSUSE:Factory
checked in at Fri May 14 00:13:56 CEST 2010.



--------
--- util-linux/util-linux.changes 2010-04-06 15:26:57.000000000 +0200
+++ /mounts/work_src_done/STABLE/util-linux/util-linux.changes 2010-05-11
16:00:27.000000000 +0200
@@ -1,0 +2,5 @@
+Tue May 11 13:58:49 UTC 2010 - puzel@xxxxxxxxxx
+
+- add util-linux-addpart-use-atoll.patch (bnc#603328)
+
+-------------------------------------------------------------------

calling whatdependson for head-i586


New:
----
util-linux-addpart-use-atoll.patch

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

Other differences:
------------------
++++++ util-linux.spec ++++++
--- /var/tmp/diff_new_pack.zOfBgp/_old 2010-05-14 00:11:14.000000000 +0200
+++ /var/tmp/diff_new_pack.zOfBgp/_new 2010-05-14 00:11:14.000000000 +0200
@@ -27,7 +27,7 @@
Group: System/Base
AutoReqProv: on
Version: 2.17.2
-Release: 1
+Release: 2
Recommends: %name-lang = %{version}
Summary: A collection of basic system utilities
Source:
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/v%{version}/%name-ng-%{version}.tar.bz2
@@ -71,6 +71,8 @@
# crypto patch
Patch3: util-linux-2.17.1-mount_losetup_crypto.patch
Patch4: util-linux-2.17.1-losetup-honor-documented-c-option
+# 603328
+Patch5: util-linux-addpart-use-atoll.patch
##
## adjtimex
##
@@ -159,6 +161,7 @@
%patch2 -p1
%patch3 -p1
%patch4 -p1
+%patch5 -p1
#
cd adjtimex-*
%patch50 -p1

++++++ util-linux-addpart-use-atoll.patch ++++++
Index: util-linux-ng-2.17.2/partx/addpart.c
===================================================================
--- util-linux-ng-2.17.2.orig/partx/addpart.c 2010-01-28 15:57:59.000000000
+0100
+++ util-linux-ng-2.17.2/partx/addpart.c 2010-05-11 15:51:26.000000000
+0200
@@ -25,8 +25,8 @@ main(int argc, char **argv){
exit(1);
}
p.pno = atoi(argv[2]);
- p.start = 512 * ((long long) atol(argv[3]));
- p.length = 512 * ((long long) atol(argv[4]));
+ p.start = 512 * atoll(argv[3]);
+ p.length = 512 * atoll(argv[4]);
p.devname[0] = 0;
p.volname[0] = 0;
a.op = BLKPG_ADD_PARTITION;

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



Remember to have fun...

--
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx

< Previous Next >
This Thread