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

Diff for /src/usr.bin/cvs/update.c between version 1.86 and 1.87

version 1.86, 2007/01/17 17:54:50 version 1.87, 2007/01/18 09:26:19
Line 151 
Line 151 
         if (cf->file_status == DIR_CREATE && build_dirs == 1) {          if (cf->file_status == DIR_CREATE && build_dirs == 1) {
                 cvs_mkpath(cf->file_path);                  cvs_mkpath(cf->file_path);
                 if ((cf->fd = open(cf->file_path, O_RDONLY)) == -1)                  if ((cf->fd = open(cf->file_path, O_RDONLY)) == -1)
                         fatal("cvs_update_enterdir: %s", strerror(errno));                          fatal("cvs_update_enterdir: `%s': %s",
                               cf->file_path, strerror(errno));
   
                 entry = xmalloc(CVS_ENT_MAXLINELEN);                  entry = xmalloc(CVS_ENT_MAXLINELEN);
                 l = snprintf(entry, CVS_ENT_MAXLINELEN, "D/%s////",                  l = snprintf(entry, CVS_ENT_MAXLINELEN, "D/%s////",

Legend:
Removed from v.1.86  
changed lines
  Added in v.1.87