summaryrefslogtreecommitdiffstats
path: root/usr.sbin/npppd
diff options
context:
space:
mode:
authortb <tb@openbsd.org>2015-12-17 08:01:55 +0000
committertb <tb@openbsd.org>2015-12-17 08:01:55 +0000
commitae505340fa6cd9b637a58920f2b9e69bbedfbeac (patch)
tree0677b1c8071673f26547f484553b6d61b5349bd7 /usr.sbin/npppd
parentReplace arc4random() % i by arc4random_uniform(i) to avoid modulo bias. (diff)
downloadwireguard-openbsd-ae505340fa6cd9b637a58920f2b9e69bbedfbeac.tar.xz
wireguard-openbsd-ae505340fa6cd9b637a58920f2b9e69bbedfbeac.zip
Add missing $OpenBSD$ tags.
Diffstat (limited to 'usr.sbin/npppd')
-rw-r--r--usr.sbin/npppd/common/debugmacro.h1
-rw-r--r--usr.sbin/npppd/common/debugutil.c1
-rw-r--r--usr.sbin/npppd/common/debugutil.h1
-rw-r--r--usr.sbin/npppd/common/hash.c1
-rw-r--r--usr.sbin/npppd/common/hash.h3
-rw-r--r--usr.sbin/npppd/common/ipsec_util.c3
-rw-r--r--usr.sbin/npppd/common/ipsec_util.h1
-rw-r--r--usr.sbin/npppd/common/ipsec_util_local.h1
-rw-r--r--usr.sbin/npppd/common/net_utils.c3
-rw-r--r--usr.sbin/npppd/common/net_utils.h1
-rw-r--r--usr.sbin/npppd/common/radish.c1
-rw-r--r--usr.sbin/npppd/common/radish.h1
-rw-r--r--usr.sbin/npppd/common/recvfromto.c1
-rw-r--r--usr.sbin/npppd/common/recvfromto.h1
-rw-r--r--usr.sbin/npppd/common/slist.h1
-rw-r--r--usr.sbin/npppd/common/slist_test.c1
-rw-r--r--usr.sbin/npppd/common/time_utils.c1
17 files changed, 20 insertions, 3 deletions
diff --git a/usr.sbin/npppd/common/debugmacro.h b/usr.sbin/npppd/common/debugmacro.h
index 8a9c867adba..b344223e6a3 100644
--- a/usr.sbin/npppd/common/debugmacro.h
+++ b/usr.sbin/npppd/common/debugmacro.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: debugmacro.h,v 1.3 2015/12/17 08:01:55 tb Exp $ */
/*-
* Copyright (c) 2009 Internet Initiative Japan Inc.
* All rights reserved.
diff --git a/usr.sbin/npppd/common/debugutil.c b/usr.sbin/npppd/common/debugutil.c
index 9f7a4a85dca..d5b50920a38 100644
--- a/usr.sbin/npppd/common/debugutil.c
+++ b/usr.sbin/npppd/common/debugutil.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: debugutil.c,v 1.5 2015/12/17 08:01:55 tb Exp $ */
/*-
* Copyright (c) 2009 Internet Initiative Japan Inc.
* All rights reserved.
diff --git a/usr.sbin/npppd/common/debugutil.h b/usr.sbin/npppd/common/debugutil.h
index 82b0dbe92d6..759f8e7706b 100644
--- a/usr.sbin/npppd/common/debugutil.h
+++ b/usr.sbin/npppd/common/debugutil.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: debugutil.h,v 1.4 2015/12/17 08:01:55 tb Exp $ */
/*-
* Copyright (c) 2009 Internet Initiative Japan Inc.
* All rights reserved.
diff --git a/usr.sbin/npppd/common/hash.c b/usr.sbin/npppd/common/hash.c
index 69432c6affa..7818b48c6b7 100644
--- a/usr.sbin/npppd/common/hash.c
+++ b/usr.sbin/npppd/common/hash.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: hash.c,v 1.5 2015/12/17 08:01:55 tb Exp $ */
/*-
* Copyright (c) 2009 Internet Initiative Japan Inc.
* All rights reserved.
diff --git a/usr.sbin/npppd/common/hash.h b/usr.sbin/npppd/common/hash.h
index eb3012dea21..4797ab3e78b 100644
--- a/usr.sbin/npppd/common/hash.h
+++ b/usr.sbin/npppd/common/hash.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: hash.h,v 1.2 2015/12/17 08:01:55 tb Exp $ */
/*-
* Copyright (c) 2009 Internet Initiative Japan Inc.
* All rights reserved.
@@ -23,7 +24,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
-/* $Id: hash.h,v 1.1 2010/01/11 04:20:57 yasuoka Exp $ */
+/* $Id: hash.h,v 1.2 2015/12/17 08:01:55 tb Exp $ */
#ifndef HASH_H
#define HASH_H
diff --git a/usr.sbin/npppd/common/ipsec_util.c b/usr.sbin/npppd/common/ipsec_util.c
index fc6aed3081b..3102c3f85a4 100644
--- a/usr.sbin/npppd/common/ipsec_util.c
+++ b/usr.sbin/npppd/common/ipsec_util.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: ipsec_util.c,v 1.8 2015/12/17 08:01:55 tb Exp $ */
/*-
* Copyright (c) 2007, 2009 Internet Initiative Japan Inc.
* All rights reserved.
@@ -23,7 +24,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
-/* $Id: ipsec_util.c,v 1.7 2015/01/19 01:48:59 deraadt Exp $ */
+/* $Id: ipsec_util.c,v 1.8 2015/12/17 08:01:55 tb Exp $ */
/*@file IPsec related utility functions */
/*
* RFC 2367 PF_KEY Key Management API, Version 2
diff --git a/usr.sbin/npppd/common/ipsec_util.h b/usr.sbin/npppd/common/ipsec_util.h
index 77d8b08dff6..5579661fd18 100644
--- a/usr.sbin/npppd/common/ipsec_util.h
+++ b/usr.sbin/npppd/common/ipsec_util.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: ipsec_util.h,v 1.2 2015/12/17 08:01:55 tb Exp $ */
/*-
* Copyright (c) 2009 Internet Initiative Japan Inc.
* All rights reserved.
diff --git a/usr.sbin/npppd/common/ipsec_util_local.h b/usr.sbin/npppd/common/ipsec_util_local.h
index 8cbb683d771..7e9b5aebd76 100644
--- a/usr.sbin/npppd/common/ipsec_util_local.h
+++ b/usr.sbin/npppd/common/ipsec_util_local.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: ipsec_util_local.h,v 1.4 2015/12/17 08:01:55 tb Exp $ */
/*-
* Copyright (c) 2009 Internet Initiative Japan Inc.
* All rights reserved.
diff --git a/usr.sbin/npppd/common/net_utils.c b/usr.sbin/npppd/common/net_utils.c
index b98d81aa28f..e282f0dd2b5 100644
--- a/usr.sbin/npppd/common/net_utils.c
+++ b/usr.sbin/npppd/common/net_utils.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: net_utils.c,v 1.5 2015/12/17 08:01:55 tb Exp $ */
/*-
* Copyright (c) 2009 Internet Initiative Japan Inc.
* All rights reserved.
@@ -23,7 +24,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
-/* $Id: net_utils.c,v 1.4 2012/05/08 13:18:37 yasuoka Exp $ */
+/* $Id: net_utils.c,v 1.5 2015/12/17 08:01:55 tb Exp $ */
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
diff --git a/usr.sbin/npppd/common/net_utils.h b/usr.sbin/npppd/common/net_utils.h
index 72f67ce293e..718ec6cc29b 100644
--- a/usr.sbin/npppd/common/net_utils.h
+++ b/usr.sbin/npppd/common/net_utils.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: net_utils.h,v 1.2 2015/12/17 08:01:55 tb Exp $ */
/*-
* Copyright (c) 2009 Internet Initiative Japan Inc.
* All rights reserved.
diff --git a/usr.sbin/npppd/common/radish.c b/usr.sbin/npppd/common/radish.c
index ac092355511..792937a5924 100644
--- a/usr.sbin/npppd/common/radish.c
+++ b/usr.sbin/npppd/common/radish.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: radish.c,v 1.4 2015/12/17 08:01:55 tb Exp $ */
#ifndef GENERIC_USE
#define GENERIC_USE
#endif
diff --git a/usr.sbin/npppd/common/radish.h b/usr.sbin/npppd/common/radish.h
index a9eeb40292f..51d66692658 100644
--- a/usr.sbin/npppd/common/radish.h
+++ b/usr.sbin/npppd/common/radish.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: radish.h,v 1.3 2015/12/17 08:01:55 tb Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
* All rights reserved.
diff --git a/usr.sbin/npppd/common/recvfromto.c b/usr.sbin/npppd/common/recvfromto.c
index efeb311435b..fa36f5e4bb1 100644
--- a/usr.sbin/npppd/common/recvfromto.c
+++ b/usr.sbin/npppd/common/recvfromto.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: recvfromto.c,v 1.6 2015/12/17 08:01:55 tb Exp $ */
/* adapted from ipsec-tools 0.6 src/racoon/sockmisc.c */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
diff --git a/usr.sbin/npppd/common/recvfromto.h b/usr.sbin/npppd/common/recvfromto.h
index 8bbde3ce9fa..fb689595414 100644
--- a/usr.sbin/npppd/common/recvfromto.h
+++ b/usr.sbin/npppd/common/recvfromto.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: recvfromto.h,v 1.4 2015/12/17 08:01:55 tb Exp $ */
/*-
* Copyright (c) 2009 Internet Initiative Japan Inc.
* All rights reserved.
diff --git a/usr.sbin/npppd/common/slist.h b/usr.sbin/npppd/common/slist.h
index 756959f16ea..4e0c5e184c2 100644
--- a/usr.sbin/npppd/common/slist.h
+++ b/usr.sbin/npppd/common/slist.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: slist.h,v 1.5 2015/12/17 08:01:55 tb Exp $ */
/*-
* Copyright (c) 2009 Internet Initiative Japan Inc.
* All rights reserved.
diff --git a/usr.sbin/npppd/common/slist_test.c b/usr.sbin/npppd/common/slist_test.c
index df1a494e83c..9ec3dbd20c9 100644
--- a/usr.sbin/npppd/common/slist_test.c
+++ b/usr.sbin/npppd/common/slist_test.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: slist_test.c,v 1.5 2015/12/17 08:01:55 tb Exp $ */
/*-
* Copyright (c) 2009 Internet Initiative Japan Inc.
* All rights reserved.
diff --git a/usr.sbin/npppd/common/time_utils.c b/usr.sbin/npppd/common/time_utils.c
index 8103785dd1c..02c089381c4 100644
--- a/usr.sbin/npppd/common/time_utils.c
+++ b/usr.sbin/npppd/common/time_utils.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: time_utils.c,v 1.3 2015/12/17 08:01:55 tb Exp $ */
/*-
* Copyright (c) 2008 Internet Initiative Japan Inc.
* All rights reserved.