summaryrefslogtreecommitdiff
path: root/src/utilities/util_cpyright.c
blob: df135b68d2cca0e4db3915626caf0cfae3805b24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*-
 * Copyright (c) 2014-2015 MongoDB, Inc.
 * Copyright (c) 2008-2014 WiredTiger, Inc.
 *	All rights reserved.
 *
 * See the file LICENSE for redistribution information.
 */

#include "util.h"

void
util_copyright(void)
{
	printf("%s\n", "Copyright (c) 2008-2015 MongoDB, Inc.");
	printf("%s\n\n", "All rights reserved.");

	printf("%s\n\n",
	    "This program is free software: you can redistribute it and/or\n"
	    "modify it under the terms of versions 2 or 3 of the GNU General\n"
	    "Public License as published by the Free Software Foundation.");

	printf("%s\n\n",
	    "This program is distributed in the hope that it will be useful,\n"
	    "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
	    "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n"
	    "GNU General Public License for more details:");

	printf("\t%s\n\n",
	    "http://www.gnu.org/licenses/gpl-3.0-standalone.html");

	printf("%s\n",
	    "For a license to use the WiredTiger software under conditions\n"
	    "other than those described by the GNU General Public License,\n"
	    "or for technical support for this software, contact WiredTiger,\n"
	    "Inc. at info@wiredtiger.com.");
}