aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--networking/ntpd.c51
1 files changed, 32 insertions, 19 deletions
diff --git a/networking/ntpd.c b/networking/ntpd.c
index 2d4f076d9..33cb1dcb1 100644
--- a/networking/ntpd.c
+++ b/networking/ntpd.c
@@ -1,30 +1,43 @@
1/* 1/*
2 * NTP client/server, based on OpenNTPD 3.9p1 2 * NTP client/server, based on OpenNTPD 3.9p1
3 * 3 *
4 * Author: Adam Tkac <vonsch@gmail.com> 4 * Busybox port author: Adam Tkac (C) 2009 <vonsch@gmail.com>
5 * 5 *
6 * Licensed under GPLv2, see file LICENSE in this source tree. 6 * OpenNTPd 3.9p1 copyright holders:
7 * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
8 * Copyright (c) 2004 Alexander Guy <alexander.guy@andern.org>
9 *
10 * OpenNTPd code is licensed under ISC-style licence:
11 *
12 * Permission to use, copy, modify, and distribute this software for any
13 * purpose with or without fee is hereby granted, provided that the above
14 * copyright notice and this permission notice appear in all copies.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
17 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
18 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
19 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
20 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
21 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
22 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
23 ***********************************************************************
7 * 24 *
8 * Parts of OpenNTPD clock syncronization code is replaced by 25 * Parts of OpenNTPD clock syncronization code is replaced by
9 * code which is based on ntp-4.2.6, whuch carries the following 26 * code which is based on ntp-4.2.6, which carries the following
10 * copyright notice: 27 * copyright notice:
11 * 28 *
12 *********************************************************************** 29 * Copyright (c) University of Delaware 1992-2009
13 * * 30 *
14 * Copyright (c) University of Delaware 1992-2009 * 31 * Permission to use, copy, modify, and distribute this software and
15 * * 32 * its documentation for any purpose with or without fee is hereby
16 * Permission to use, copy, modify, and distribute this software and * 33 * granted, provided that the above copyright notice appears in all
17 * its documentation for any purpose with or without fee is hereby * 34 * copies and that both the copyright notice and this permission
18 * granted, provided that the above copyright notice appears in all * 35 * notice appear in supporting documentation, and that the name
19 * copies and that both the copyright notice and this permission * 36 * University of Delaware not be used in advertising or publicity
20 * notice appear in supporting documentation, and that the name * 37 * pertaining to distribution of the software without specific,
21 * University of Delaware not be used in advertising or publicity * 38 * written prior permission. The University of Delaware makes no
22 * pertaining to distribution of the software without specific, * 39 * representations about the suitability this software for any
23 * written prior permission. The University of Delaware makes no * 40 * purpose. It is provided "as is" without express or implied warranty.
24 * representations about the suitability this software for any *
25 * purpose. It is provided "as is" without express or implied *
26 * warranty. *
27 * *
28 *********************************************************************** 41 ***********************************************************************
29 */ 42 */
30 43