fix bnc#603328
OBS-URL: https://build.opensuse.org/package/show/Base:System/util-linux?expand=0&rev=37
This commit is contained in:
parent
8cf25f8633
commit
2a1e0a2cd3
15
util-linux-addpart-use-atoll.patch
Normal file
15
util-linux-addpart-use-atoll.patch
Normal file
@ -0,0 +1,15 @@
|
||||
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;
|
@ -1,3 +1,8 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue May 11 13:58:49 UTC 2010 - puzel@novell.com
|
||||
|
||||
- add util-linux-addpart-use-atoll.patch (bnc#603328)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 6 13:22:37 UTC 2010 - hvogel@novell.com
|
||||
|
||||
|
@ -71,6 +71,8 @@ Patch2: util-linux-2.14.1-mount_skip_sync.patch
|
||||
# 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 @@ unique IDs (UUIDs).
|
||||
%patch2 -p1
|
||||
%patch3 -p1
|
||||
%patch4 -p1
|
||||
%patch5 -p1
|
||||
#
|
||||
cd adjtimex-*
|
||||
%patch50 -p1
|
||||
|
Loading…
Reference in New Issue
Block a user