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

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

version 1.11, 2006/07/08 01:02:03 version 1.12, 2006/07/09 01:47:20
Line 265 
Line 265 
         if (s != NULL)          if (s != NULL)
                 *s = ' ';                  *s = ' ';
   
           cvs_log(LP_TRACE, "%s", data);
         cvs_remote_output(data);          cvs_remote_output(data);
         xfree(data);          xfree(data);
 }  }
Line 304 
Line 305 
 {  {
         char *repo;          char *repo;
   
         cvs_log(LP_TRACE, "cvs_client_senddir(%s)", dir);  
   
         if (lastdir != NULL && !strcmp(dir, lastdir))          if (lastdir != NULL && !strcmp(dir, lastdir))
                 return;                  return;
   
Line 332 
Line 331 
                 return;                  return;
   
         cvs_client_senddir(cf->file_wd);          cvs_client_senddir(cf->file_wd);
   
         cvs_log(LP_TRACE, "cvs_client_sendfile(%s)", cf->file_path);  
         cvs_remote_classify_file(cf);          cvs_remote_classify_file(cf);
   
         if (cf->file_type == CVS_DIR)          if (cf->file_type == CVS_DIR)
Line 409 
Line 406 
 void  void
 cvs_client_ok(char *data)  cvs_client_ok(char *data)
 {  {
         cvs_log(LP_TRACE, "cvs_client_ok()");  
         end_of_response = 1;          end_of_response = 1;
 }  }
   
 void  void
 cvs_client_error(char *data)  cvs_client_error(char *data)
 {  {
         cvs_log(LP_TRACE, "cvs_client_error()");  
         end_of_response = 1;          end_of_response = 1;
 }  }
   
Line 470 
Line 465 
         struct cvs_ent *ent, *newent;          struct cvs_ent *ent, *newent;
         char *dir, *entry, rev[16], timebuf[64], sticky[16];          char *dir, *entry, rev[16], timebuf[64], sticky[16];
   
         cvs_log(LP_TRACE, "cvs_client_checkedin(%s)", data);  
   
         dir = cvs_remote_input();          dir = cvs_remote_input();
         entry = cvs_remote_input();          entry = cvs_remote_input();
         xfree(dir);          xfree(dir);
Line 523 
Line 516 
         char timebuf[32], *repo, *rpath, *entry, *mode;          char timebuf[32], *repo, *rpath, *entry, *mode;
         char revbuf[32], *len, *fpath, *wdir;          char revbuf[32], *len, *fpath, *wdir;
   
         cvs_log(LP_TRACE, "cvs_client_updated(%s)", data);  
   
         client_check_directory(data);          client_check_directory(data);
   
         rpath = cvs_remote_input();          rpath = cvs_remote_input();
Line 602 
Line 593 
 void  void
 cvs_client_merged(char *data)  cvs_client_merged(char *data)
 {  {
         cvs_log(LP_TRACE, "cvs_client_merged(%s)", data);  
 }  }
   
 void  void
 cvs_client_removed(char *data)  cvs_client_removed(char *data)
 {  {
         cvs_log(LP_TRACE, "cvs_client_removed(%s)", data);  
 }  }
   
 void  void
 cvs_client_remove_entry(char *data)  cvs_client_remove_entry(char *data)
 {  {
         char *dir;          char *dir;
   
         cvs_log(LP_TRACE, "cvs_client_remove_entry(%s)", data);  
   
         dir = cvs_remote_input();          dir = cvs_remote_input();
         xfree(dir);          xfree(dir);

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