Fix line-count overflow, close PR 351

Submitted by:  Edward Wang <edward@edcom.com>
This commit is contained in:
Andrey A. Chernov 1995-05-09 16:56:23 +00:00
parent d8762fa6a0
commit f14d551c2c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=8387

View File

@ -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 */
};
/*