summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mandriva.org>2009-04-27 15:22:59 +0000
committerPascal Terjan <pterjan@mandriva.org>2009-04-27 15:22:59 +0000
commit54888cd7752fec9f82501f07f93a583bbdaed87b (patch)
tree606c1234bd7385e313321ed0e344cc332368219b
parent7bb4358bb58b1ecda36c0a33b9162119bfc3695b (diff)
downloaddrakx-backup-do-not-use-54888cd7752fec9f82501f07f93a583bbdaed87b.tar
drakx-backup-do-not-use-54888cd7752fec9f82501f07f93a583bbdaed87b.tar.gz
drakx-backup-do-not-use-54888cd7752fec9f82501f07f93a583bbdaed87b.tar.bz2
drakx-backup-do-not-use-54888cd7752fec9f82501f07f93a583bbdaed87b.tar.xz
drakx-backup-do-not-use-54888cd7752fec9f82501f07f93a583bbdaed87b.zip
allow creating partition starting after 1TB
-rw-r--r--perl-install/NEWS1
-rw-r--r--perl-install/c/stuff.xs.pl2
2 files changed, 2 insertions, 1 deletions
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;