[BACK]Return to collect.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mail

Diff for /src/usr.bin/mail/collect.c between version 1.13 and 1.14

version 1.13, 1997/07/30 06:32:39 version 1.14, 1997/07/30 07:19:30
Line 282 
Line 282 
                         hp->h_bcc = cat(hp->h_bcc, extract(&linebuf[2], GBCC));                          hp->h_bcc = cat(hp->h_bcc, extract(&linebuf[2], GBCC));
                         break;                          break;
                 case 'd':                  case 'd':
                         strcpy(linebuf + 2, getdeadletter());                          strncpy(linebuf + 2, getdeadletter(), sizeof(linebuf) - 3);
                           linebuf[sizeof(linebuf) - 1] = '\0';
                         /* fall into . . . */                          /* fall into . . . */
                 case 'r':                  case 'r':
                 case '<':                  case '<':

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14