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

Diff for /src/usr.bin/cvs/cvs.h between version 1.34 and 1.35

version 1.34, 2004/12/07 06:33:10 version 1.35, 2004/12/07 17:10:56
Line 1 
Line 1 
 /*      $OpenBSD$       */  /*      $OpenBSD$       */
 /*  /*
  * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>   * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
  * All rights reserved.   * All rights reserved.
  *   *
  * Redistribution and use in source and binary forms, with or without   * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions   * modification, are permitted provided that the following conditions
  * are met:   * are met:
  *   *
  * 1. Redistributions of source code must retain the above copyright   * 1. Redistributions of source code must retain the above copyright
  *    notice, this list of conditions and the following disclaimer.   *    notice, this list of conditions and the following disclaimer.
  * 2. The name of the author may not be used to endorse or promote products   * 2. The name of the author may not be used to endorse or promote products
  *    derived from this software without specific prior written permission.   *    derived from this software without specific prior written permission.
  *   *
  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,   * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY   * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
Line 21 
Line 21 
  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,   * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR   * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF   * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.   * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */   */
   
 #ifndef CVS_H  #ifndef CVS_H
Line 67 
Line 67 
 #define CVS_OP_ANY         64     /* all operations */  #define CVS_OP_ANY         64     /* all operations */
   
   
   
 /* methods */  /* methods */
 #define CVS_METHOD_NONE       0  #define CVS_METHOD_NONE       0
 #define CVS_METHOD_LOCAL      1    /* local access */  #define CVS_METHOD_LOCAL      1    /* local access */
Line 129 
Line 128 
 };  };
   
   
   
 struct cvsroot {  struct cvsroot {
         char   *cr_str;          char   *cr_str;
         u_int   cr_method;          u_int   cr_method;
Line 197 
Line 195 
 } CVSENTRIES;  } CVSENTRIES;
   
   
   
 struct cvs_hent {  struct cvs_hent {
         char    ch_event;          char    ch_event;
         time_t  ch_date;          time_t  ch_date;
Line 237 
Line 234 
 extern CVSFILE *cvs_files;  extern CVSFILE *cvs_files;
   
 #endif  #endif
   
   
   
 /* client command handlers */  /* client command handlers */

Legend:
Removed from v.1.34  
changed lines
  Added in v.1.35