xref: /openbsd-src/usr.bin/rdist/version.h (revision f75387cb26411cf98c236a69221f49108293e7a9)
1*f75387cbSmillert /*	$OpenBSD: version.h,v 1.7 2003/06/03 02:56:15 millert Exp $	*/
2b0f9517bSmillert 
3fdd8ad51Sdm /*
4fdd8ad51Sdm  * Copyright (c) 1983 Regents of the University of California.
5fdd8ad51Sdm  * All rights reserved.
6fdd8ad51Sdm  *
7fdd8ad51Sdm  * Redistribution and use in source and binary forms, with or without
8fdd8ad51Sdm  * modification, are permitted provided that the following conditions
9fdd8ad51Sdm  * are met:
10fdd8ad51Sdm  * 1. Redistributions of source code must retain the above copyright
11fdd8ad51Sdm  *    notice, this list of conditions and the following disclaimer.
12fdd8ad51Sdm  * 2. Redistributions in binary form must reproduce the above copyright
13fdd8ad51Sdm  *    notice, this list of conditions and the following disclaimer in the
14fdd8ad51Sdm  *    documentation and/or other materials provided with the distribution.
15*f75387cbSmillert  * 3. Neither the name of the University nor the names of its contributors
16fdd8ad51Sdm  *    may be used to endorse or promote products derived from this software
17fdd8ad51Sdm  *    without specific prior written permission.
18fdd8ad51Sdm  *
19fdd8ad51Sdm  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20fdd8ad51Sdm  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21fdd8ad51Sdm  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22fdd8ad51Sdm  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23fdd8ad51Sdm  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24fdd8ad51Sdm  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25fdd8ad51Sdm  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26fdd8ad51Sdm  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27fdd8ad51Sdm  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28fdd8ad51Sdm  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29fdd8ad51Sdm  * SUCH DAMAGE.
30fdd8ad51Sdm  */
31fdd8ad51Sdm 
32fdd8ad51Sdm /*
3340934732Smillert  * $From: version.h,v 1.2 1999/11/01 00:19:36 christos Exp $
34fdd8ad51Sdm  */
35fdd8ad51Sdm 
36fdd8ad51Sdm /*
37fdd8ad51Sdm  * The rdist protocol version number.  This should be changed
38fdd8ad51Sdm  * whenever the protocol changes.
39fdd8ad51Sdm  */
40fdd8ad51Sdm #define VERSION			6
41fdd8ad51Sdm 
42fdd8ad51Sdm /*
43fdd8ad51Sdm  * Distribution version.  The major distribution number should match
44fdd8ad51Sdm  * the protocol version number (VERSION) defined above.
4540934732Smillert  * This is not true anymore for freerdist
46fdd8ad51Sdm  */
4740934732Smillert #define DISTVERSION		"0.92"
48fdd8ad51Sdm 
49fdd8ad51Sdm /*
50fdd8ad51Sdm  * Patch level
51fdd8ad51Sdm  */
5240934732Smillert #define PATCHLEVEL 		0
53fdd8ad51Sdm 
54fdd8ad51Sdm /*
55fdd8ad51Sdm  * Distribution status
56fdd8ad51Sdm  */
5740934732Smillert #define DISTSTATUS		"BETA"
58