home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Bug_Fixes / Net.v7bugs / 0029 < prev    next >
Encoding:
Text File  |  1981-08-18  |  416 b   |  18 lines

  1. Areed.185
  2. net.v7bugs
  3. utzoo!decvax!ucbvax!ihnss!cbosg!harpo!chico!duke!reed!valer
  4. Tue Aug 11 00:29:45 1981
  5. mail bug
  6. The V7 mail(1) program has an annoying habit of not
  7. behaving properly on rather long entries.  The problem
  8. is in the routine "copylet" when a difference of two
  9. long integers is stored as an int.  The following should
  10. fix the problem.
  11.     325c325,328
  12.     < {    int ch, k;
  13.     ---
  14.     > {
  15.     >     int ch;
  16.     >     long k;
  17.     > 
  18.