[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.25 and 1.26

version 1.25, 2006/11/14 10:10:19 version 1.26, 2006/11/14 15:39:41
Line 36 
Line 36 
         { "Argument",           0,      cvs_server_argument, REQ_NEEDED },          { "Argument",           0,      cvs_server_argument, REQ_NEEDED },
         { "Argumentx",          0,      cvs_server_argumentx, REQ_NEEDED },          { "Argumentx",          0,      cvs_server_argumentx, REQ_NEEDED },
         { "Global_option",      0,      cvs_server_globalopt, REQ_NEEDED },          { "Global_option",      0,      cvs_server_globalopt, REQ_NEEDED },
           { "Set",                0,      cvs_server_set, REQ_NEEDED },
   
         /*          /*
          * used to tell the server what is going on in our           * used to tell the server what is going on in our
Line 56 
Line 57 
         { "Kerberos-encrypt",           0,      NULL, 0 },          { "Kerberos-encrypt",           0,      NULL, 0 },
         { "Gssapi-encrypt",             0,      NULL, 0 },          { "Gssapi-encrypt",             0,      NULL, 0 },
         { "Gssapi-authenticate",        0,      NULL, 0 },          { "Gssapi-authenticate",        0,      NULL, 0 },
         { "Set",                        0,      NULL, 0 },  
         { "expand-modules",             0,      NULL, 0 },          { "expand-modules",             0,      NULL, 0 },
   
         /* commands that might be supported */          /* commands that might be supported */
Line 170 
Line 170 
 void  void
 cvs_client_connect_to_server(void)  cvs_client_connect_to_server(void)
 {  {
           struct cvs_var *vp;
         char *cmd, *argv[9], *resp;          char *cmd, *argv[9], *resp;
         int ifd[2], ofd[2], argc;          int ifd[2], ofd[2], argc;
   
Line 271 
Line 272 
                 cvs_client_send_request("Global_option -V");                  cvs_client_send_request("Global_option -V");
   
         cvs_client_send_request("UseUnchanged");          cvs_client_send_request("UseUnchanged");
   
           /* XXX: If 'Set' is supported? */
           TAILQ_FOREACH(vp, &cvs_variables, cv_link)
                   cvs_client_send_request("Set %s=%s", vp->cv_name, vp->cv_val);
 }  }
   
 void  void

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26