28 lines
1.1 KiB
Text
28 lines
1.1 KiB
Text
$NetBSD: patch-av,v 1.2 2006/10/14 19:33:45 schwarz Exp $
|
|
|
|
--- news.h.orig 2003-11-03 10:36:23.000000000 +0100
|
|
+++ news.h 2006-10-14 20:32:23.000000000 +0200
|
|
@@ -14,8 +14,8 @@
|
|
#define N_DIGEST 1 /* article is part of a digest */
|
|
#define N_MODERATED 2 /* group is moderated */
|
|
|
|
- off_t ng_fpos; /* position of article text */
|
|
- off_t ng_lpos; /* last text offset */
|
|
+ long ng_fpos; /* position of article text */
|
|
+ long ng_lpos; /* last text offset */
|
|
/* header lines: */
|
|
char *ng_from; /* from */
|
|
char *ng_name; /* senders name */
|
|
@@ -52,9 +52,9 @@
|
|
*/
|
|
|
|
struct digest_header {
|
|
- off_t dg_hpos; /* position of article header */
|
|
- off_t dg_fpos; /* position of article text */
|
|
- off_t dg_lpos; /* last text position */
|
|
+ long dg_hpos; /* position of article header */
|
|
+ long dg_fpos; /* position of article text */
|
|
+ long dg_lpos; /* last text position */
|
|
/* header lines: */
|
|
char *dg_date; /* date */
|
|
char *dg_from; /* from */
|