diff options
author | Pascal Terjan <pterjan@mandriva.org> | 2009-04-21 16:24:33 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mandriva.org> | 2009-04-21 16:24:33 +0000 |
commit | 86272590592114121e0ca7c164bbdc1fce3613d0 (patch) | |
tree | dcce7ccc25d78baebecf9ca172fc447119ae9d00 /perl-install | |
parent | 889893ace49ac093643a60100731894dc58cb8ec (diff) | |
download | drakx-86272590592114121e0ca7c164bbdc1fce3613d0.tar drakx-86272590592114121e0ca7c164bbdc1fce3613d0.tar.gz drakx-86272590592114121e0ca7c164bbdc1fce3613d0.tar.bz2 drakx-86272590592114121e0ca7c164bbdc1fce3613d0.tar.xz drakx-86272590592114121e0ca7c164bbdc1fce3613d0.zip |
handle partition starting after 1To
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 3 | ||||
-rw-r--r-- | perl-install/c/stuff.xs.pl | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 4 |
3 files changed, 7 insertions, 2 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 46248c248..57859c2a7 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +- diskdrake: + o handle partition starting after 1To + Version 12.30 - 21 April 2009 - add a basic testsuite (ensuring it compiles) in order to prevent diff --git a/perl-install/c/stuff.xs.pl b/perl-install/c/stuff.xs.pl index 519899bd1..b323eb9f9 100644 --- a/perl-install/c/stuff.xs.pl +++ b/perl-install/c/stuff.xs.pl @@ -171,7 +171,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; diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 6c5f4dc1a..971380313 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,6 +1,8 @@ +- handle partition starting after 1To + Version 12.30 - 21 April 2009 -- finall banner +- final banner - add a basic testsuite (ensuring it compiles) in order to prevent future crashes like #50009 - do not offer to stop the install when kde3 is installed since kde3 |