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

Diff for /src/usr.bin/cvs/server.c between version 1.73 and 1.74

version 1.73, 2007/11/09 16:27:38 version 1.74, 2008/01/10 09:59:23
Line 637 
Line 637 
 void  void
 cvs_server_rlog(char *data)  cvs_server_rlog(char *data)
 {  {
         char fpath[MAXPATHLEN];          if (chdir(current_cvsroot->cr_dir) == -1)
         struct cvsroot *cvsroot;  
   
         cvsroot = cvsroot_get(NULL);  
   
         (void)xsnprintf(fpath, MAXPATHLEN, "%s/%s",  
             cvsroot->cr_dir, server_currentdir);  
   
         if (chdir(fpath) == -1)  
                 fatal("cvs_server_rlog: %s", strerror(errno));                  fatal("cvs_server_rlog: %s", strerror(errno));
   
         cvs_cmdop = CVS_OP_RLOG;          cvs_cmdop = CVS_OP_RLOG;

Legend:
Removed from v.1.73  
changed lines
  Added in v.1.74