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

Diff for /src/usr.bin/ftp/complete.c between version 1.28 and 1.29

version 1.28, 2015/01/16 06:40:08 version 1.29, 2015/10/18 03:04:11
Line 322 
Line 322 
   
                 /* check for 'continuation' completes (which are uppercase) */                  /* check for 'continuation' completes (which are uppercase) */
         if ((cursor_argc > celems) && (celems > 0)          if ((cursor_argc > celems) && (celems > 0)
             && isupper(c->c_complete[celems-1]))              && isupper((unsigned char)c->c_complete[celems - 1]))
                 cursor_argc = celems;                  cursor_argc = celems;
   
         if (cursor_argc > celems)          if (cursor_argc > celems)

Legend:
Removed from v.1.28  
changed lines
  Added in v.1.29