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

Diff for /src/usr.bin/cvs/edit.c between version 1.11 and 1.12

version 1.11, 2006/01/02 08:11:56 version 1.12, 2006/03/16 09:06:19
Line 96 
Line 96 
 static int  static int
 cvs_edit_init(struct cvs_cmd *cmd, int argc, char **argv, int *arg)  cvs_edit_init(struct cvs_cmd *cmd, int argc, char **argv, int *arg)
 {  {
         int ch, dflag, mod_count;          int ch;
   
         dflag = 0;  
         mod_count = 0;  
   
         while ((ch = getopt(argc, argv, cmd->cmd_opts)) != -1) {          while ((ch = getopt(argc, argv, cmd->cmd_opts)) != -1) {
                 switch (ch) {                  switch (ch) {
                 case 'a':                  case 'a':
Line 134 
Line 131 
 static int  static int
 cvs_edit_remote(CVSFILE *cf, void *arg)  cvs_edit_remote(CVSFILE *cf, void *arg)
 {  {
         int *mod_count;  
   
         mod_count = (int *)arg;  
   
         return (CVS_EX_OK);          return (CVS_EX_OK);
 }  }
   
Line 149 
Line 142 
 static int  static int
 cvs_edit_local(CVSFILE *cf, void *arg)  cvs_edit_local(CVSFILE *cf, void *arg)
 {  {
         int *mod_count;  
   
         mod_count = (int *)arg;  
   
         return (CVS_EX_OK);          return (CVS_EX_OK);
 }  }
   

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12