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

Diff for /src/usr.bin/ftp/fetch.c between version 1.203 and 1.204

version 1.203, 2021/03/13 11:36:31 version 1.204, 2021/03/29 03:34:52
Line 128 
Line 128 
              * hexadecimal digits.               * hexadecimal digits.
              */               */
             strchr(unsafe_chars, *c) != NULL ||              strchr(unsafe_chars, *c) != NULL ||
             (*c == '%' && (!isxdigit(*++c) || !isxdigit(*++c))));              (*c == '%' && (!isxdigit(c[1]) || !isxdigit(c[2]))));
 }  }
   
 /*  /*

Legend:
Removed from v.1.203  
changed lines
  Added in v.1.204