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

Diff for /src/usr.bin/cvs/entries.c between version 1.43 and 1.44

version 1.43, 2005/08/10 14:49:20 version 1.44, 2005/08/12 18:46:53
Line 100 
Line 100 
   
         fp = fopen(entpath, mode);          fp = fopen(entpath, mode);
         if (fp == NULL) {          if (fp == NULL) {
                 if (!nodir)                  if (nodir == 0)
                         cvs_log(LP_ERRNO, "cannot open %s for %s", entpath,                          cvs_log(LP_ERRNO, "cannot open %s for %s", entpath,
                             mode[1] == '+' ? "writing" : "reading");                              mode[1] == '+' ? "writing" : "reading");
                 return (NULL);                  return (NULL);
Line 257 
Line 257 
 cvs_ent_remove(CVSENTRIES *ef, const char *name)  cvs_ent_remove(CVSENTRIES *ef, const char *name)
 {  {
         struct cvs_ent *ent;          struct cvs_ent *ent;
   
           cvs_log(LP_TRACE, "cvs_ent_remove(%s)", name);
   
         ent = cvs_ent_get(ef, name);          ent = cvs_ent_get(ef, name);
         if (ent == NULL)          if (ent == NULL)

Legend:
Removed from v.1.43  
changed lines
  Added in v.1.44