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

Diff for /src/usr.bin/apropos/Attic/apropos.c between version 1.15 and 1.16

version 1.15, 2009/10/27 23:59:35 version 1.16, 2013/11/25 18:02:49
Line 217 
Line 217 
 void  void
 lowstr(char *from, char *to)  lowstr(char *from, char *to)
 {  {
         char ch;          unsigned char ch;
   
         while ((ch = *from++) && ch != '\n')          while ((ch = *from++) && ch != '\n')
                 *to++ = isupper(ch) ? tolower(ch) : ch;                  *to++ = isupper(ch) ? tolower(ch) : ch;

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.16