[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.36 and 1.37

version 1.36, 2006/12/19 14:11:21 version 1.37, 2006/12/19 15:12:59
Line 109 
Line 109 
 static int      cvs_client_outlog_fd = -1;  static int      cvs_client_outlog_fd = -1;
   
   
   int server_response = SERVER_OK;
   
 static char *  static char *
 client_get_supported_responses(void)  client_get_supported_responses(void)
 {  {
Line 534 
Line 536 
 cvs_client_ok(char *data)  cvs_client_ok(char *data)
 {  {
         end_of_response = 1;          end_of_response = 1;
           server_response = SERVER_OK;
 }  }
   
 void  void
 cvs_client_error(char *data)  cvs_client_error(char *data)
 {  {
         end_of_response = 1;          end_of_response = 1;
           server_response = SERVER_ERROR;
 }  }
   
 void  void

Legend:
Removed from v.1.36  
changed lines
  Added in v.1.37