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

Diff for /src/usr.bin/mail/head.c between version 1.9 and 1.10

version 1.9, 2003/06/03 02:56:11 version 1.10, 2008/07/16 14:53:41
Line 114 
Line 114 
         cp = nextword(cp, word);          cp = nextword(cp, word);
         if (*word)          if (*word)
                 hl->l_from = copyin(word, &sp);                  hl->l_from = copyin(word, &sp);
         if (cp != NULL && cp[0] == 't' && cp[1] == 't' && cp[2] == 'y') {          if (cp != NULL && strncmp(cp, "tty", 3) == 0) {
                 cp = nextword(cp, word);                  cp = nextword(cp, word);
                 hl->l_tty = copyin(word, &sp);                  hl->l_tty = copyin(word, &sp);
         }          }

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10