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

Diff for /src/usr.bin/cvs/Attic/resp.c between version 1.53 and 1.54

version 1.53, 2005/08/02 12:08:13 version 1.54, 2005/08/14 23:24:55
Line 427 
Line 427 
   
         entf = NULL;          entf = NULL;
         cf = NULL;          cf = NULL;
   
           /*
            * we do not want to handle the '.' case,
            * so return early.
            */
           if (!strcmp(line, "."))
                   return (0);
   
         cvs_splitpath(line, subdir, sizeof(subdir), &file);          cvs_splitpath(line, subdir, sizeof(subdir), &file);
         base = cvs_file_loadinfo(subdir, CF_NOFILES, NULL, NULL, 1);          base = cvs_file_loadinfo(subdir, CF_NOFILES, NULL, NULL, 1);
         if (base == NULL)          if (base == NULL)

Legend:
Removed from v.1.53  
changed lines
  Added in v.1.54