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

Diff for /src/usr.bin/mail/cmd3.c between version 1.21 and 1.22

version 1.21, 2008/07/16 14:53:41 version 1.22, 2009/07/23 20:06:03
Line 218 
Line 218 
                 np = extract(cp, GTO);                  np = extract(cp, GTO);
         else          else
                 np = NULL;                  np = NULL;
         np = elide(np);  
         /*          /*
          * Delete my name from the reply list,           * Delete my name from the reply list,
          * and with it, all my alternate names.           * and with it, all my alternate names.
Line 234 
Line 233 
                         puts("Empty reply-to field -- replying to author");                          puts("Empty reply-to field -- replying to author");
                 np = extract(rcv, GTO);                  np = extract(rcv, GTO);
         }          }
           np = elide(np);
         head.h_to = np;          head.h_to = np;
         if ((head.h_subject = hfield("subject", mp)) == NULL)          if ((head.h_subject = hfield("subject", mp)) == NULL)
                 head.h_subject = hfield("subj", mp);                  head.h_subject = hfield("subj", mp);

Legend:
Removed from v.1.21  
changed lines
  Added in v.1.22