summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/utilities/util_cpyright.c
blob: 85191111bf8e6156180b84caee0a2332ff4ed494 (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
37
38
39
/*-
 * Copyright (c) 2014-present MongoDB, Inc.
 * Copyright (c) 2008-2014 WiredTiger, Inc.
 *	All rights reserved.
 *
 * See the file LICENSE for redistribution information.
 */

#include "util.h"

/*
 * util_copyright --
 *     TODO: Add a comment describing this function.
 */
void
util_copyright(void)
{
    printf("%s\n", "Copyright (c) 2008-present 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.");
}