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

Diff for /src/usr.bin/cvs/util.c between version 1.159 and 1.160

version 1.159, 2016/10/13 20:51:25 version 1.160, 2017/06/01 08:08:24
Line 574 
Line 574 
         hd.h_data = NULL;          hd.h_data = NULL;
         hash_table_enter(&created_directories, &hd);          hash_table_enter(&created_directories, &hd);
   
         if (current_cvsroot->cr_method != CVS_METHOD_LOCAL ||          if (cvsroot_is_remote() || cvs_server_active == 1)
             cvs_server_active == 1)  
                 cvs_validate_directory(path);                  cvs_validate_directory(path);
   
         dir = xstrdup(path);          dir = xstrdup(path);
Line 663 
Line 662 
         size_t len;          size_t len;
         char *sp, *dp, *dir, rpath[PATH_MAX];          char *sp, *dp, *dir, rpath[PATH_MAX];
   
         if (current_cvsroot->cr_method != CVS_METHOD_LOCAL ||          if (cvsroot_is_remote() || cvs_server_active == 1)
             cvs_server_active == 1)  
                 cvs_validate_directory(path);                  cvs_validate_directory(path);
   
         dir = xstrdup(path);          dir = xstrdup(path);

Legend:
Removed from v.1.159  
changed lines
  Added in v.1.160