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

Diff for /src/usr.bin/cvs/Attic/req.c between version 1.36 and 1.37

version 1.36, 2005/12/21 20:04:36 version 1.37, 2005/12/22 14:31:44
Line 282 
Line 282 
          * Lets make sure we always start at the correct           * Lets make sure we always start at the correct
          * directory.           * directory.
          */           */
         if (cvs_chdir(cvs_server_tmpdir) == -1)          cvs_chdir(cvs_server_tmpdir);
                 return (-1);  
   
         /*          /*
          * Set repository path.           * Set repository path.
Line 609 
Line 608 
         cvs_req_args[0] = cmdp->cmd_name;          cvs_req_args[0] = cmdp->cmd_name;
   
         /* switch to the correct directory */          /* switch to the correct directory */
         if (cmdp->cmd_op != CVS_OP_VERSION) {          if (cmdp->cmd_op != CVS_OP_VERSION)
                 if (cvs_chdir(cvs_server_tmpdir) == -1)                  cvs_chdir(cvs_server_tmpdir);
                         return (-1);  
         }  
   
         ret = cvs_startcmd(cmdp, cvs_req_nargs, cvs_req_args);          ret = cvs_startcmd(cmdp, cvs_req_nargs, cvs_req_args);
   

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