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

Diff for /src/usr.bin/mail/send.c between version 1.22 and 1.23

version 1.22, 2009/10/27 23:59:40 version 1.23, 2014/01/17 18:42:30
Line 130 
Line 130 
                         /*                          /*
                          * Pick up the header field if we have one.                           * Pick up the header field if we have one.
                          */                           */
                         for (cp = line; (c = *cp++) && c != ':' && !isspace(c);)                          for (cp = line;
                               (c = (unsigned char)*cp++) && c != ':' && !isspace(c); )
                                 ;                                  ;
                         cp2 = --cp;                          cp2 = --cp;
                         while (isspace(*cp++))                          while (isspace((unsigned char)*cp++))
                                 ;                                  ;
                         if (cp[-1] != ':') {                          if (cp[-1] != ':') {
                                 /*                                  /*

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