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

Diff for /src/usr.bin/chpass/edit.c between version 1.33 and 1.34

version 1.33, 2009/10/27 23:59:36 version 1.34, 2013/11/26 13:18:55
Line 173 
Line 173 
                                         warnx("line %u corrupted", line);                                          warnx("line %u corrupted", line);
                                         goto bad;                                          goto bad;
                                 }                                  }
                                 while (isspace(*++p));                                  while (isspace((unsigned char)*++p))
                                 for (q = p; isprint(*q); q++) {                                          ;
                                   for (q = p; isprint((unsigned char)*q); q++) {
                                         if (ep->except && strchr(ep->except,*q))                                          if (ep->except && strchr(ep->except,*q))
                                                 break;                                                  break;
                                 }                                  }

Legend:
Removed from v.1.33  
changed lines
  Added in v.1.34