3 --- news.c.orig 2005-04-20 01:56:27.000000000 +0200
4 +++ news.c 2006-10-14 20:30:52.000000000 +0200
7 #ifndef DONT_COUNT_LINES
9 - off_t digest_artlen = 0;
10 + long digest_artlen = 0;
11 #endif /* DONT_COUNT_LINES */
15 if (fstat(fileno(f), &statb) < 0 ||
18 - (art->lpos = statb.st_size, statb.st_size <= (off_t) 0)) {
19 + (art->lpos = (long)statb.st_size, statb.st_size <= (off_t) 0)) {
21 - statb.st_size < art->lpos || statb.st_size <= (off_t) 0) {
22 + (long)statb.st_size < art->lpos || statb.st_size <= (off_t) 0) {