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

Diff for /src/usr.bin/cvs/config.h between version 1.3 and 1.4

version 1.3, 2008/02/02 19:32:28 version 1.4, 2008/02/03 17:20:14
Line 30 
Line 30 
   
 /* module stuff */  /* module stuff */
   
 char *cvs_module_lookup(char *);  #define MODULE_ALIAS            0x01
   #define MODULE_TARGETDIR        0x02
   #define MODULE_NORECURSE        0x04
   
   struct module_checkout {
           char                    *mc_repo;
           char                    *mc_wdir;
           int                      mc_flags;
   };
   
 struct module_info {  struct module_info {
         char                            *mi_name;          char                            *mi_name;
         char                            *mi_repository;          char                            *mi_repository;
           int                              mi_flags;
   
         TAILQ_ENTRY(module_info)        m_list;          TAILQ_ENTRY(module_info)         m_list;
 };  };
   
   struct module_checkout *cvs_module_lookup(char *);
 #endif  #endif

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4