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

Diff for /src/usr.bin/quota/quota.c between version 1.31 and 1.32

version 1.31, 2013/11/08 15:21:20 version 1.32, 2013/11/26 13:19:07
Line 684 
Line 684 
 {  {
         int c;          int c;
   
         c = *s++;          c = (unsigned char)*s++;
         do {          do {
                 if (!isdigit(c))                  if (!isdigit(c))
                         return (0);                          return (0);
         } while ((c = *s++));          } while ((c = (unsigned char)*s++));
         return (1);          return (1);
 }  }

Legend:
Removed from v.1.31  
changed lines
  Added in v.1.32