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

Diff for /src/usr.bin/cvs/release.c between version 1.13 and 1.14

version 1.13, 2005/07/13 14:35:17 version 1.14, 2005/07/14 15:17:42
Line 161 
Line 161 
                 else {                  else {
                         /* test if dir has CVS/ directory */                          /* test if dir has CVS/ directory */
                         if (stat(cdpath, &st) == -1) {                          if (stat(cdpath, &st) == -1) {
                                 cvs_log(LP_ERR,                                  if (verbosity > 0)
                                     "no repository directory: %s", dpath);                                          cvs_log(LP_ERR,
                                               "no repository directory: %s",
                                               dpath);
                                 return (0);                                  return (0);
                         }                          }
                 }                  }
Line 236 
Line 238 
                         }                          }
                 }                  }
         } else {          } else {
                 cvs_log(LP_ERR, "no such directory: %s", dpath);                  if (verbosity > 0)
                           cvs_log(LP_ERR, "no such directory: %s", dpath);
                 return (CVS_EX_DATA);                  return (CVS_EX_DATA);
         }          }
   

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14