[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.15 and 1.16

version 1.15, 2005/05/18 21:39:25 version 1.16, 2005/05/20 20:00:53
Line 88 
Line 88 
         if (mkdir(cvs_server_tmpdir, 0700) == -1) {          if (mkdir(cvs_server_tmpdir, 0700) == -1) {
                 cvs_log(LP_ERRNO, "failed to create temporary directory '%s'",                  cvs_log(LP_ERRNO, "failed to create temporary directory '%s'",
                     cvs_server_tmpdir);                      cvs_server_tmpdir);
                 return (CVS_EX_DATA);                  return (CVS_EX_FILE);
         }          }
   
         if (chdir(cvs_server_tmpdir) == -1) {          if (chdir(cvs_server_tmpdir) == -1) {
                 cvs_log(LP_ERRNO, "failed to change to temporary directory '%s'",                  cvs_log(LP_ERRNO, "failed to change to temporary directory '%s'",
                     cvs_server_tmpdir);                      cvs_server_tmpdir);
                 return (CVS_EX_DATA);                  return (CVS_EX_FILE);
         }          }
   
         for (;;) {          for (;;) {

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.16