[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.149 and 1.150

version 1.149, 2008/06/17 11:05:39 version 1.150, 2008/06/21 15:39:15
Line 37 
Line 37 
   
 #include "cvs.h"  #include "cvs.h"
 #include "remote.h"  #include "remote.h"
   #include "hash.h"
   
 extern char *__progname;  extern char *__progname;
   
Line 80 
Line 81 
   
 extern CVSENTRIES *current_list;  extern CVSENTRIES *current_list;
   
   struct hash_table created_directories;
   struct hash_table created_cvs_directories;
   
 void  void
 sighandler(int sig)  sighandler(int sig)
 {  {
Line 188 
Line 192 
         TAILQ_INIT(&cvs_variables);          TAILQ_INIT(&cvs_variables);
         SLIST_INIT(&repo_locks);          SLIST_INIT(&repo_locks);
         SLIST_INIT(&temp_files);          SLIST_INIT(&temp_files);
   
           hash_table_init(&created_directories, 100);
           hash_table_init(&created_cvs_directories, 100);
   
         /* check environment so command-line options override it */          /* check environment so command-line options override it */
         if ((envstr = getenv("CVS_RSH")) != NULL)          if ((envstr = getenv("CVS_RSH")) != NULL)

Legend:
Removed from v.1.149  
changed lines
  Added in v.1.150