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

Diff for /src/usr.bin/cvs/cvs.c between version 1.72 and 1.73

version 1.72, 2005/07/07 14:27:57 version 1.73, 2005/07/23 11:19:46
Line 57 
Line 57 
 int   cvs_readonly = 0;  int   cvs_readonly = 0;
 int   cvs_nocase = 0;   /* set to 1 to disable filename case sensitivity */  int   cvs_nocase = 0;   /* set to 1 to disable filename case sensitivity */
 int   cvs_noexec = 0;   /* set to 1 to disable disk operations (-n option) */  int   cvs_noexec = 0;   /* set to 1 to disable disk operations (-n option) */
   int   cvs_error = -1;   /* set to the correct error code on failure */
 char *cvs_defargs;              /* default global arguments from .cvsrc */  char *cvs_defargs;              /* default global arguments from .cvsrc */
 char *cvs_command;              /* name of the command we are running */  char *cvs_command;              /* name of the command we are running */
 int   cvs_cmdop;  int   cvs_cmdop;
Line 70 
Line 70 
 /* hierarchy of all the files affected by the command */  /* hierarchy of all the files affected by the command */
 CVSFILE *cvs_files;  CVSFILE *cvs_files;
   
   
 static TAILQ_HEAD(, cvs_var) cvs_variables;  static TAILQ_HEAD(, cvs_var) cvs_variables;
   
   
Line 211 
Line 210 
                     "No CVSROOT specified! Please use the `-d' option");                      "No CVSROOT specified! Please use the `-d' option");
                 cvs_log(LP_ABORT,                  cvs_log(LP_ABORT,
                     "or set the CVSROOT enviroment variable.");                      "or set the CVSROOT enviroment variable.");
                   break;
           case CVS_EX_ERR:
                   cvs_log(LP_ABORT, "yeah, we failed, and we don't know why");
                 break;                  break;
         default:          default:
                 break;                  break;

Legend:
Removed from v.1.72  
changed lines
  Added in v.1.73