diff options
-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 |