From 54888cd7752fec9f82501f07f93a583bbdaed87b Mon Sep 17 00:00:00 2001 From: Pascal Terjan Date: Mon, 27 Apr 2009 15:22:59 +0000 Subject: allow creating partition starting after 1TB --- perl-install/NEWS | 1 + perl-install/c/stuff.xs.pl | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/perl-install/NEWS b/perl-install/NEWS index 62490ea78..72713ef26 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -8,6 +8,7 @@ - diskdrake: o allow LVM in non expert mode o allow Encrypted partition inside LVM + o allow creating partition starting after 1TB Version 11.71.8 - 25 February 2009 diff --git a/perl-install/c/stuff.xs.pl b/perl-install/c/stuff.xs.pl index a94de81fa..e6fcb860d 100644 --- a/perl-install/c/stuff.xs.pl +++ b/perl-install/c/stuff.xs.pl @@ -170,7 +170,7 @@ setlocale(category, locale = 0) int lseek_sector(fd, sector, offset) int fd - long sector + unsigned long sector long offset CODE: RETVAL = lseek64(fd, (off64_t) sector * SECTORSIZE + offset, SEEK_SET) >= 0; -- cgit v1.2.1