From cca9bf2418ec5c1b032680d4f6b3fb733f64eec9 Mon Sep 17 00:00:00 2001 From: ache Date: Tue, 9 May 1995 16:56:23 +0000 Subject: Fix line-count overflow, close PR 351 Submitted by: Edward Wang --- usr.bin/mail/def.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.bin/mail') diff --git a/usr.bin/mail/def.h b/usr.bin/mail/def.h index f843914..1faca76 100644 --- a/usr.bin/mail/def.h +++ b/usr.bin/mail/def.h @@ -68,10 +68,10 @@ struct message { short m_flag; /* flags, see below */ - short m_block; /* block number of this message */ short m_offset; /* offset in block of message */ + long m_block; /* block number of this message */ long m_size; /* Bytes in the message */ - short m_lines; /* Lines in the message */ + long m_lines; /* Lines in the message */ }; /* -- cgit v1.1