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

Diff for /src/usr.bin/cvs/cvs.c between version 1.143 and 1.144

version 1.143, 2008/02/26 21:23:00 version 1.144, 2008/03/08 20:52:36
Line 241 
Line 241 
                 return (0);                  return (0);
         }          }
   
           cvs_umask = umask(0);
           umask(cvs_umask);
   
         if ((current_cvsroot = cvsroot_get(".")) == NULL) {          if ((current_cvsroot = cvsroot_get(".")) == NULL) {
                 cvs_log(LP_ERR,                  cvs_log(LP_ERR,
                     "No CVSROOT specified! Please use the '-d' option");                      "No CVSROOT specified! Please use the '-d' option");
Line 273 
Line 276 
                 cvs_parse_configfile();                  cvs_parse_configfile();
                 cvs_parse_modules();                  cvs_parse_modules();
         }          }
   
         umask(cvs_umask);  
   
         cmdp->cmd(cmd_argc, cmd_argv);          cmdp->cmd(cmd_argc, cmd_argv);
         cvs_cleanup();          cvs_cleanup();

Legend:
Removed from v.1.143  
changed lines
  Added in v.1.144