[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.12 and 1.13

version 1.12, 2006/07/09 01:47:20 version 1.13, 2006/07/09 04:39:43
Line 372 
Line 372 
                                 fatal("cvs_client_sendfile: overflow");                                  fatal("cvs_client_sendfile: overflow");
                 }                  }
   
                 cvs_client_send_request("Entry /%s/%s%s/%s/%s/",                  cvs_client_send_request("Entry /%s/%s%s/%s//%s",
                     cf->file_name, (cf->file_status == FILE_REMOVED) ? "-" : "",                      cf->file_name, (cf->file_status == FILE_REMOVED) ? "-" : "",
                    rev, timebuf, sticky);                     rev, timebuf, sticky);
         }          }
Line 598 
Line 598 
 void  void
 cvs_client_removed(char *data)  cvs_client_removed(char *data)
 {  {
           char *dir;
   
           dir = cvs_remote_input();
           xfree(dir);
 }  }
   
 void  void

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